58fb5450bf
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAABCAAGBQJR68ZjAAoJEODn0BcelbrXz6oP/3o1/1I5MkzS4UTE236bkEar +UPdLMAvzhmlsKePIScpfquV+7FSGiojfMdTNec4iuAuzjSi2fydiegbbNuYkOTj Bf9Sw518RUcbnfqF+MCyOYIa95M6CBB7NZ18RZgYPg04hpFUBrroMORvdRh6jLfT RfILpfN87QbKmYhQi4XY6IK61/8ukAHw/nu0SPULuE19VKLzbKgdibq+fHZpGCwc yi3164fT/mOKjYrENZ/dhnVgruQtcVo2RD4Q48ZNXANgR2SNtq7OXstG8dbmjEfO 4RwwJWAdpbqWmB7Nl0U3Ro4jYfgbN9TjdgZ/WGg9qc6vb8oXQ8dqNkMQYHlClav/ WryzL2EUEci4r3AKyYytJGJwko3/MWr2PLYjT+YKYPcAcgW3gjKjKDJo3c29+OF9 Xz/s56KNSULOXP6e0vadLoTA1NA3B494piMLQFaynkKJE/Sc1BlVlLzF/U2bMB2p BktbeB+9XKN28PDJV9gA7A0/2XfN1Rd5BWjKDwWla9xGpjdoqWC7LMKvoxkhgUC5 iOUYnu0jMoLAo8tRddBJOI4U6A6Ox7ym8r7u83Lgm/LTmOwZXd/j7mT0L+LB4+hP 9hnijVUob+Gu5rwGQ1F907lJCfHDt78L82UwFl8dh/P7+J5mqkyMSye0/cpr+/60 S6aP7ivKDt8eJhG5gaOH =nyMa -----END PGP SIGNATURE----- Merge tag 'fcgi-cgi-0.2.2' into debian fcgi-cgi 0.2.2 |
||
---|---|---|
cmake | ||
debian | ||
autogen.sh | ||
CMakeLists.txt | ||
config.h.cmake | ||
configure.ac | ||
COPYING | ||
fastcgi.c | ||
fastcgi.h | ||
fcgi-cgi.1 | ||
fcgi-cgi.c | ||
Makefile.am | ||
README.rst |
Description ----------- :Homepage: http://redmine.lighttpd.net/projects/fcgi-cgi/wiki fcgi-cgi is a FastCGI application to run normal cgi applications. It doesn't make CGI applications faster, but it allows you to run them on a different host and with different user permissions (without the need for suexec). lighttpd2 won't have a mod_cgi, so you need this FastCGI wrapper to be able to execute standard cgi applications like mailman and cgit. fcgi-cgi is released under the `MIT license <http://git.lighttpd.net/fcgi-cgi.cgi/tree/COPYING>`_ Usage ----- Examples for spawning a fcg-cgi instance with daemontools or runit:: #!/bin/sh # run script exec spawn-fcgi -n -s /tmp/fastcgi-cgi.sock -u www-default -U www-data -- /usr/bin/fcgi-cgi Build dependencies ------------------ * glib >= 2.16.0 (http://www.gtk.org/) * libev (http://software.schmorp.de/pkg/libev.html) * cmake or autotools (for snapshots/releases the autotool generated files are included) Build ----- * snapshot/release with autotools:: ./configure make * build from git: ``git clone git://git.lighttpd.net/fcgi-cgi.git`` * with autotools:: ./autogen.sh ./configure make * with cmake (should work with snapshots/releases too):: cmake . make