Sha256: 2aaf4e116eff23e4e20620266aab6d5ad77854faefa6fccbe8ab69b6f691a485

Contents?: true

Size: 659 Bytes

Versions: 1

Compression:

Stored size: 659 Bytes

Contents

server.modules = ("mod_fastcgi", "mod_cgi")
server.document-root = "."
server.errorlog = "lighttpd.errors"
server.port = 9203

server.event-handler = "freebsd-kqueue"

cgi.assign = ("/test" => "/usr/bin/ruby",
#              ".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")),
                 )

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-0.3.0 test/cgi/lighttpd.conf