Merge pull request #102 from jacobsalmela/lighttpd

Fix #101 and add Logstalgia requirements
This commit is contained in:
Jacob Salmela 2015-12-01 20:10:21 -06:00
commit 9ee2f006ac
1 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,6 @@
server.modules = (
"mod_access",
"mod_accesslog",
"mod_expire",
"mod_compress",
"mod_redirect",
@ -14,6 +16,8 @@ server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.port = 80
accesslog.filename = "/var/log/lighttpd/access.log"
accesslog.format = "%{%s}t|%V|%r|%s|%b"
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )