21 lines
292 B
Plaintext
21 lines
292 B
Plaintext
server.modules = (
|
|
"mod_cgi",
|
|
"mod_rewrite",
|
|
"mod_setenv"
|
|
)
|
|
|
|
server.document-root = var.CWD
|
|
server.port = 5050
|
|
|
|
url.rewrite-once = (
|
|
"/" => "/gorillanest.pl.cgi"
|
|
)
|
|
|
|
setenv.add-environment = (
|
|
"PERL5LIB" => env.PERL5LIB
|
|
)
|
|
|
|
cgi.assign = (
|
|
".pl.cgi" => "/usr/bin/perl"
|
|
)
|