Fastcgi module for Apache 2.2
[mod_fastcgi.git] / INSTALL.AP2
blob048b41902d54812d39550fcbcf8af763d7b9f4cc
3              ***  Apache FastCGI Module Installation  ***
6   See docs/mod_fastcgi.html for configuration information.
8   This module is maintained at http://www.fastcgi.com.  
9   
10   See the web page for mailing list information.
11   
12   
13   *NIX
14   ====
16     $ cd <mod_fastcgi_dir>
17     $ cp Makefile.AP2 Makefile
18     $ make 
19     $ make install
21     If your Apache2 installation isn't in /usr/local/apache2, then
22     set the top_dir variable when running make (or edit the
23     Makefile), e.g. 
25       $ make top_dir=/opt/httpd/2.0.40
27     Add an entry to httpd.conf like this:
29       LoadModule fastcgi_module modules/mod_fastcgi.so
32   WIN
33   ===
35     To build mod_fastcgi as a project you'll need M$ VC++ 6.0 (the Makefile
36     hasn't been updated for AP2 support):
38     Open the mod_fastcgi project file with the VC++.
40     Edit the Project for your configuration (update the Preprocessor
41     and the Link paths). The default assumes a complete Apache2 
42     installation in /Apache2.
43     
44     Build mod_fastcgi.so.
46     Copy it to the Apache modules directory, e.g. /Apache2/modules.
48     Add an entry to httpd.conf like this:
50         LoadModule fastcgi_module modules/mod_fastcgi.so