summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-09-10 08:44:18 +0000
committerbjorn <bjorn@bringert.net>2008-09-10 08:44:18 +0000
commit5210d1745c519502bab2df266424331ad1f51b5c (patch)
treeb7b506d8930a0d72d2bbe1aaf809b1ef8bfb70c5 /src
parent6e6efb14f7d23f5c70dd48fbfd2d55a036963509 (diff)
mod_fastcgi installation instructions in src/server/README
Diffstat (limited to 'src')
-rw-r--r--src/server/README12
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)