removed werc file for new infra stuff

This commit is contained in:
q 2025-09-23 16:30:57 -04:00
parent 17143880e1
commit a49eb81ba2
13 changed files with 255 additions and 28 deletions

View file

@ -4,7 +4,7 @@
###############################################################################
# {{{ variables
var.basedir = "/var/www/localhost"
var.basedir = "/var/www/werc"
var.logdir = "/var/log/lighttpd"
var.statedir = "/var/lib/lighttpd"
# }}}
@ -42,21 +42,21 @@ server.modules = (
#setenv.add-response-header = ( "X-Debug" => "true" )
#debug.log-request-header = "enable"
#debug.log-response-header = "enable"
# {{{ includes
#{{{ includes
include "mime-types.conf"
# uncomment for cgi support
include "mod_cgi.conf"
include "mod_cgi.conf"
# uncomment for php/fastcgi support
# include "mod_fastcgi.conf"
# uncomment for php/fastcgi fpm support
# include "mod_fastcgi_fpm.conf"
# }}}
#}}}
# {{{ server settings
server.username = "lighttpd"
server.groupname = "lighttpd"
server.document-root = var.basedir + "/htdocs"
server.document-root = var.basedir
server.pid-file = "/run/lighttpd.pid"
server.errorlog = "/dev/pts/0"
@ -64,8 +64,7 @@ server.errorlog = "/dev/pts/0"
# log errors to syslog instead
# server.errorlog-use-syslog = "enable"
server.indexfiles = ("index.php", "index.html",
"index.htm", "default.htm")
server.indexfiles = ("index.php", "index.html", "index.htm", "default.htm")
# server.tag = "lighttpd"
@ -319,12 +318,12 @@ url.access-deny = ("~", ".inc")
#
# }}}
# {{{ debug
#{{{ debug
# debug.log-request-header = "enable"
# debug.log-response-header = "enable"
# debug.log-request-handling = "enable"
# debug.log-file-not-found = "enable"
# }}}
#}}}
# vim: set ft=conf foldmethod=marker et :
include "/etc/lighttpd/conf.d/*.conf"