diff options
| author | Emil Williams | 2025-08-20 23:46:09 +0000 |
|---|---|---|
| committer | Emil Williams | 2025-08-20 23:46:09 +0000 |
| commit | df2e0e9da234428306fb933f84e21078dc75020b (patch) | |
| tree | 0500a46d9ddc1ea080919b7bcbc8279c11aa440f /lighttpd-cgi.conf | |
| parent | e49369309a6893e968f01c7cf38e27ea9219a4d9 (diff) | |
| parent | efb00d45c75762bac1b89f07128d00909caebd8d (diff) | |
| download | gorillanest-df2e0e9da234428306fb933f84e21078dc75020b.tar.xz gorillanest-df2e0e9da234428306fb933f84e21078dc75020b.tar.zst | |
I Doubt It Works The Same
Diffstat (limited to 'lighttpd-cgi.conf')
| -rw-r--r-- | lighttpd-cgi.conf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lighttpd-cgi.conf b/lighttpd-cgi.conf new file mode 100644 index 0000000..07b55d7 --- /dev/null +++ b/lighttpd-cgi.conf @@ -0,0 +1,21 @@ +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" +) |
