Skip to content

Commit 841525a

Browse files
author
notroot
committed
Issue #50: add lighttpd configurations for seaside and fastcgi
1 parent 4035f45 commit 841525a

File tree

5 files changed

+24
-0
lines changed

5 files changed

+24
-0
lines changed

Diff for: projects/seaside31/fastCGI/lighttpd/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
```Shell
2+
sudo ln -s $GS_HOME/projects/seaside31/fastCGI/lighttpd/includes /etc/lighttpd
3+
sudo ln -s $GS_HOME/projects/seaside31/fastCGI/lighttpd/conf-available/20-seaside.conf \
4+
/etc/lighttpd/conf-available/
5+
sudo ln -s /etc/lighttpd/conf-available/10-accesslog.conf /etc/lighttpd/conf-enabled/
6+
sudo ln -s /etc/lighttpd/conf-available/10-fastcgi.conf /etc/lighttpd/conf-enabled/
7+
sudo ln -s /etc/lighttpd/conf-available/20-seaside.conf /etc/lighttpd/conf-enabled/
8+
sudo /etc/init.d/lighttpd force-reload
9+
```
10+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
fastcgi.debug = 0
2+
3+
fastcgi.server = (
4+
"/" =>
5+
(
6+
("host" => "127.0.0.1","port" => 9001,"check-local" => "disable","mode" => "responder" ),
7+
("host" => "127.0.0.1","port" => 9002,"check-local" => "disable","mode" => "responder" ),
8+
("host" => "127.0.0.1","port" => 9003,"check-local" => "disable","mode" => "responder" ),
9+
),
10+
)
11+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/etc/lighttpd/conf-available/10-accesslog.conf
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/etc/lighttpd/conf-available/10-fastcgi.conf
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/etc/lighttpd/conf-available/20-seaside.conf

0 commit comments

Comments
 (0)