diff --git a/advanced/lighttpd.conf b/advanced/lighttpd.conf index 31cb47b..3998269 100644 --- a/advanced/lighttpd.conf +++ b/advanced/lighttpd.conf @@ -1,5 +1,6 @@ server.modules = ( "mod_access", + "mod_accesslog", "mod_expire", "mod_compress", "mod_redirect", @@ -15,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" )