From 9f6cca6c56d12478afb026ca4bd4ec3a688d6c9b Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 26 Mar 2016 17:29:15 +0300 Subject: [PATCH] Example lighttpd configuration for logs directory viewing --- lighttpd.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lighttpd.conf diff --git a/lighttpd.conf b/lighttpd.conf new file mode 100644 index 0000000..684c3c2 --- /dev/null +++ b/lighttpd.conf @@ -0,0 +1,12 @@ +mimetype.assign = ( + "" => "text/plain" +) + +server.document-root = "/home/goircd/logs" +server.errorlog = "lighttpd.err" +server.pid-file = "lighttpd.pid" +server.port = 80 + +dir-listing.activate = "enable" +dir-listing.encoding = "UTF-8" +dir-listing.show-readme = "enable" -- 2.44.0