From 1eb7f879f07b8c2b856bb9aaf0ae57c56ca02f30 Mon Sep 17 00:00:00 2001 From: Jacob Salmela Date: Tue, 1 Dec 2015 15:12:16 -0600 Subject: [PATCH 1/2] fixes #101 the line url.access-deny caused the error. --- advanced/lighttpd.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/advanced/lighttpd.conf b/advanced/lighttpd.conf index a4253a0e..31cb47b9 100644 --- a/advanced/lighttpd.conf +++ b/advanced/lighttpd.conf @@ -1,4 +1,5 @@ server.modules = ( + "mod_access", "mod_expire", "mod_compress", "mod_redirect", From c34cc1608baf2c7c1450c19a9922107d91e57d29 Mon Sep 17 00:00:00 2001 From: Jacob Salmela Date: Tue, 1 Dec 2015 16:04:07 -0600 Subject: [PATCH 2/2] for use with logstalgia This seems to show the domain queried and the path requested. --- advanced/lighttpd.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/advanced/lighttpd.conf b/advanced/lighttpd.conf index 31cb47b9..3998269a 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" )