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
|
diff -u olddoc/lighttpd.1 doc/lighttpd.1
--- olddoc/lighttpd.1 2004-06-24 10:26:54.888331272 +0200
+++ doc/lighttpd.1 2004-06-24 10:27:48.352203528 +0200
@@ -5,7 +5,7 @@
lighttpd -D -f <configfile>
.SH DESCRIPTION
.SH FILES
-/etc/lighttpd/lighttpd.conf
+/etc/lighttpd.conf
.SH CONFORMING TO
HTTP/1.0
HTTP/1.0
diff -u olddoc/lighttpd.conf doc/lighttpd.conf
--- olddoc/lighttpd.conf 2004-06-24 10:26:54.900329448 +0200
+++ doc/lighttpd.conf 2004-06-24 10:26:35.252316400 +0200
@@ -16,7 +16,7 @@
"mod_access",
# "mod_auth",
# "mod_status",
-# "mod_fastcgi",
+ "mod_fastcgi",
# "mod_simple_vhost",
# "mod_evhost",
# "mod_cgi",
@@ -114,14 +114,14 @@
#### fastcgi module
## read fastcgi.txt for more info
-#fastcgi.server = ( ".php" =>
-# ( "grisu" =>
-# (
-# "host" => "192.168.2.10",
-# "port" => 1026
-# )
-# )
-# )
+fastcgi.server = ( ".php" =>
+ ( "localhost" =>
+ (
+ "host" => "127.0.0.1",
+ "port" => 1026
+ )
+ )
+ )
#### CGI module
#cgi.assign = ( ".pl" => "/usr/bin/perl",
|