mirror of
https://github.com/casjaysdevdocker/lighttpd
synced 2025-01-18 12:34:28 -05:00
🗃️ Committing everything that changed 🗃️
This commit is contained in:
parent
7834076e76
commit
456c7bb5f6
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user