aboutsummaryrefslogtreecommitdiff
path: root/service/lighttpd-fcgi.conf
blob: a9cbb25d5dab07a503f512394c7f001c12b6eeb2 (plain) (blame)
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
server.modules = (
    "mod_fastcgi",
    "mod_rewrite",
    "mod_setenv"
)

server.document-root = var.CWD
server.port = 5050

url.rewrite-once = (
    "/" => "/gorillanest"
)

setenv.add-environment = (
    "PERL5LIB" => env.PERL5LIB
)

fastcgi.server = (
    "/gorillanest" => ((
        "bin-path" => "gorillanest.pl.fcgi",
        "socket"   => "gorillanest.sock",
    ))
)

fastcgi.debug = 1