diff options
author | Ben Mansell <joosters@php.net> | 2001-03-19 11:03:29 +0000 |
---|---|---|
committer | Ben Mansell <joosters@php.net> | 2001-03-19 11:03:29 +0000 |
commit | 08df6f9b675041fca86f6854a567a9a09ffcbdad (patch) | |
tree | 51cee017edb00d0ba5ce5d14397afdee329110b6 /sapi/fastcgi/README.FastCGI | |
parent | d8f3ea791a6e84c91a192149be8c750d8733942f (diff) | |
download | php-git-08df6f9b675041fca86f6854a567a9a09ffcbdad.tar.gz |
@ New FastCGI server module
New FastCGI server module. Based on the thttpd server module with
large chunks of code ripped from the cgi module. Also modifies
Makefile.in and configure.in in order to make it build properly.
# This initial checkin has been tested with the Zeus web server,
# but should work with any server that has a correct FastCGI
# implementation.
Diffstat (limited to 'sapi/fastcgi/README.FastCGI')
-rw-r--r-- | sapi/fastcgi/README.FastCGI | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sapi/fastcgi/README.FastCGI b/sapi/fastcgi/README.FastCGI new file mode 100644 index 0000000000..65dbc44ea0 --- /dev/null +++ b/sapi/fastcgi/README.FastCGI @@ -0,0 +1,17 @@ +FastCGI module +-------------- + +This module requires the FastCGI development kit, available from +http://www.fastcgi.com/ + +Before building PHP, please enter the dev kit, and run: + +./configure +make +make export + +This will compile the library code required for the FastCGI module. All +that is then required is to configure PHP with the '--with-fastcgi' option. +After making the code, you will end up with a binary file called 'php'. +Installation of this file will depend on the web server being used, please +see their documentation for details. |