Vendor Rack 1.0.1
Incorporate patch from Revision 496.
This commit is contained in:
parent
a7202d54cd
commit
76f388f3e2
113 changed files with 5759 additions and 199 deletions
20
vendor/plugins/rack/test/cgi/lighttpd.conf
vendored
Normal file
20
vendor/plugins/rack/test/cgi/lighttpd.conf
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
server.modules = ("mod_fastcgi", "mod_cgi")
|
||||
server.document-root = "."
|
||||
server.errorlog = "lighttpd.errors"
|
||||
server.port = 9203
|
||||
|
||||
server.event-handler = "select"
|
||||
|
||||
cgi.assign = ("/test" => "",
|
||||
# ".ru" => ""
|
||||
)
|
||||
|
||||
fastcgi.server = ("test.fcgi" => ("localhost" =>
|
||||
("min-procs" => 1,
|
||||
"socket" => "/tmp/rack-test-fcgi",
|
||||
"bin-path" => "test.fcgi")),
|
||||
"test.ru" => ("localhost" =>
|
||||
("min-procs" => 1,
|
||||
"socket" => "/tmp/rack-test-ru-fcgi",
|
||||
"bin-path" => "test.ru")),
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue