Перейти к файлу
Stefan Bühler 743ae1612a Reduce #ifdefs - simply require std headers to be present
* use inet_addr to parse IPv4 addresses on all platforms (instead of
  inet_pton when available)
* require inet_pton when IPv6 is enabled (default) instead of
  "automatically" disabling IPv6 when inet_pton is missing
2024-03-31 16:23:33 +02:00
doc Use meson instead of autotools and cmake 2024-03-31 16:23:29 +02:00
src Reduce #ifdefs - simply require std headers to be present 2024-03-31 16:23:33 +02:00
AUTHORS [doc] update stbuehler email address 2022-12-21 19:02:18 +01:00
COPYING initial import 2009-02-06 20:15:33 +00:00
NEWS Reduce #ifdefs - simply require std headers to be present 2024-03-31 16:23:33 +02:00
README.md Use meson instead of autotools and cmake 2024-03-31 16:23:29 +02:00
meson.build Reduce #ifdefs - simply require std headers to be present 2024-03-31 16:23:33 +02:00
meson_options.txt Use meson instead of autotools and cmake 2024-03-31 16:23:29 +02:00
packdist.sh Use meson instead of autotools and cmake 2024-03-31 16:23:29 +02:00
spawn-fcgi.1 [doc] fix http[s] links 2022-12-21 19:02:18 +01:00

README.md

spawn-fcgi

authors: Jan Kneschke, Stefan Bühler

homepage: https://redmine.lighttpd.net/projects/spawn-fcgi

abstract: spawn-fcgi is used to spawn FastCGI applications

Features

  • binds to IPv4/IPv6 and Unix domain sockets
  • supports privilege separation: chmod/chown socket, drop to uid/gid
  • supports chroot
  • supports daemontools supervise

Build

meson is required to build.

Setup a build directory build:

meson setup build --prefix /usr/local

Compile it:

meson compile -C build

Install:

meson install -C build

Usage

See man page, e.g. rendered for debian unstable.