diff options
| author | bjorn <bjorn@bringert.net> | 2008-09-10 08:44:18 +0000 |
|---|---|---|
| committer | bjorn <bjorn@bringert.net> | 2008-09-10 08:44:18 +0000 |
| commit | 5210d1745c519502bab2df266424331ad1f51b5c (patch) | |
| tree | b7b506d8930a0d72d2bbe1aaf809b1ef8bfb70c5 /src | |
| parent | 6e6efb14f7d23f5c70dd48fbfd2d55a036963509 (diff) | |
mod_fastcgi installation instructions in src/server/README
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/README | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/server/README b/src/server/README index d470feaee..7083f4fe8 100644 --- a/src/server/README +++ b/src/server/README @@ -26,7 +26,14 @@ $ make food == Running == -- Make sure that your web server supports FastCGI. +- Make sure that your web server supports FastCGI. For Apache on OS X, + do this: + +$ curl -O http://www.fastcgi.com/dist/mod_fastcgi-2.4.6.tar.gz +$ tar -zxf mod_fastcgi-2.4.6.tar.gz +$ cd mod_fastcgi-2.4.6/ +$ apxs -o mod_fastcgi.so -c *.c +$ apxs -i -a -n fastcgi mod_fastcgi.so - Make sure that your web server knows that gf.fcgi is a FastCGI program. @@ -38,7 +45,8 @@ directory that you use. thinks that the program has died. With Apache, you can fix this by adding "FastCgiConfig -startDelay 30" to your httpd.conf. -These sections from my Apache config fixes the above two: +These sections from my Apache config fixes the above two +(some of this may be fixed by the second apxs command above): (On OS X, this is in /etc/httpd/httpd.conf) |
