aboutsummaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
Diffstat (limited to 'service')
-rw-r--r--service/lighttpd-cgi.conf4
-rw-r--r--service/lighttpd-fcgi.conf2
2 files changed, 3 insertions, 3 deletions
diff --git a/service/lighttpd-cgi.conf b/service/lighttpd-cgi.conf
index 24df494..6dd7d76 100644
--- a/service/lighttpd-cgi.conf
+++ b/service/lighttpd-cgi.conf
@@ -8,7 +8,7 @@ server.document-root = var.CWD
server.port = 5050
url.rewrite-once = (
- "/" => "/gorillanest.pl.cgi"
+ "/" => "/perl/cgi.pl"
)
setenv.add-environment = (
@@ -16,5 +16,5 @@ setenv.add-environment = (
)
cgi.assign = (
- ".pl.cgi" => "/usr/bin/perl"
+ ".pl" => "/usr/bin/perl"
)
diff --git a/service/lighttpd-fcgi.conf b/service/lighttpd-fcgi.conf
index a9cbb25..c5b9fba 100644
--- a/service/lighttpd-fcgi.conf
+++ b/service/lighttpd-fcgi.conf
@@ -17,7 +17,7 @@ setenv.add-environment = (
fastcgi.server = (
"/gorillanest" => ((
- "bin-path" => "gorillanest.pl.fcgi",
+ "bin-path" => "perl/fcgi.pl",
"socket" => "gorillanest.sock",
))
)