aboutsummaryrefslogtreecommitdiff
path: root/lighttpd.conf
diff options
context:
space:
mode:
authorEmil Williams2025-07-06 18:36:26 +0000
committerEmil Williams2025-07-06 18:36:26 +0000
commita9c95145e8b3d9a46a4597e4c4c5d4ac77ad18db (patch)
treef2854e0b06f1222bd88c5268f2849b01abc52b69 /lighttpd.conf
parentbe96ef3c69aa497dd0a663de6cc3318fa7d77893 (diff)
downloademil-up.chud.cyou-a9c95145e8b3d9a46a4597e4c4c5d4ac77ad18db.tar.xz
emil-up.chud.cyou-a9c95145e8b3d9a46a4597e4c4c5d4ac77ad18db.tar.zst
nginx, in deployment
Diffstat (limited to 'lighttpd.conf')
-rw-r--r--lighttpd.conf28
1 files changed, 0 insertions, 28 deletions
diff --git a/lighttpd.conf b/lighttpd.conf
deleted file mode 100644
index 921467d..0000000
--- a/lighttpd.conf
+++ /dev/null
@@ -1,28 +0,0 @@
-# @BAKE lighttpd -D -f $@
-server.document-root = var.CWD
-server.port = "8080"
-
-server.modules += ( "mod_rewrite" )
-url.rewrite-once = (
- "^/out/.*" => "$0",
- ".*" => "/upchud.tcl"
-)
-
-# This limits the maximum upload size (in kbytes).
-server.max-request-size = 204800 # 200 MiB
-
-# This makes sure people cant inject Tcl scripts
-server.modules += ( "mod_cgi" )
-$HTTP["url"] == "/upchud.tcl" {
- cgi.assign = ( ".tcl" => "" )
-}
-
-
-debug.log-request-header = 1
-debug.log-file-not-found = 1
-debug.log-condition-handling = 1
-debug.log-request-handling = 1
-debug.log-state-handling = 1
-debug.log-response-header = 1
-
-server.errorlog = "errors.log"