🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-18 16:24:54 -04:00
parent 7834076e76
commit 456c7bb5f6
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -4,21 +4,7 @@
var.basedir = "/var/www/localhost" var.basedir = "/var/www/localhost"
var.statedir = "/var/lib/lighttpd" var.statedir = "/var/lib/lighttpd"
var.logdir = "/tmp" var.logdir = "/var/log/lighttpd"
server.username = "lighttpd"
server.groupname = "lighttpd"
server.port = 80
server.document-root = "/data/htdocs/www"
server.pid-file = "/tmp/lighttpd.pid"
server.errorlog = "/tmp/lighttpd.err.log"
server.tag = "lighttpd"
server.follow-symlink = "enable"
server.errorfile-prefix = var.basedir + "/error/status-"
server.indexfiles = ("index.php", "index.html","index.htm", "default.htm")
server.modules = ( server.modules = (
"mod_auth", "mod_auth",
@ -43,12 +29,27 @@ server.modules = (
"mod_accesslog" "mod_accesslog"
) )
include "mime-types.conf" server.username = "lighttpd"
include "mod_cgi.conf" server.groupname = "lighttpd"
server.port = 80
server.document-root = "/data/htdocs/www"
server.tag = "lighttpd"
server.follow-symlink = "enable"
server.errorfile-prefix = var.basedir + "/error/status-"
server.indexfiles = ("index.php", "index.html","index.htm", "default.htm")
server.pid-file = "/tmp/lighttpd.pid"
server.errorlog = var.logdir + "/error.log"
accesslog.filename = var.logdir + "/access.log"
static-file.exclude-extensions = (".php", ".pl", ".cgi", ".fcgi") static-file.exclude-extensions = (".php", ".pl", ".cgi", ".fcgi")
accesslog.filename = "/tmp/access.log" include "mime-types.conf"
include "mod_cgi.conf"
url.access-deny = ("~", ".inc") url.access-deny = ("~", ".inc")
ssi.extension = (".shtml") ssi.extension = (".shtml")
status.status-url = "/server-status" status.status-url = "/server-status"