-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathINSTALL.AP2
More file actions
51 lines (28 loc) · 1.16 KB
/
INSTALL.AP2
File metadata and controls
51 lines (28 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
*** Apache FastCGI Module Installation ***
See docs/mod_fastcgi.html for configuration information.
This module is maintained at http://www.fastcgi.com.
See the web page for mailing list information.
*NIX
====
$ cd <mod_fastcgi_dir>
$ cp Makefile.AP2 Makefile
$ make
$ make install
If your Apache2 installation isn't in /usr/local/apache2, then
set the top_dir variable when running make (or edit the
Makefile), e.g.
$ make top_dir=/opt/httpd/2.0.40
Add an entry to httpd.conf like this:
LoadModule fastcgi_module modules/mod_fastcgi.so
WIN
===
To build mod_fastcgi as a project you'll need M$ VC++ 6.0 (the Makefile
hasn't been updated for AP2 support):
Open the mod_fastcgi project file with the VC++.
Edit the Project for your configuration (update the Preprocessor
and the Link paths). The default assumes a complete Apache2
installation in /Apache2.
Build mod_fastcgi.so.
Copy it to the Apache modules directory, e.g. /Apache2/modules.
Add an entry to httpd.conf like this:
LoadModule fastcgi_module modules/mod_fastcgi.so