From b6b31e440c7915e82fe8b9a4b93083ec9fb2e9fd Mon Sep 17 00:00:00 2001 From: Kirmy Date: Thu, 9 Dec 2021 13:09:09 +0100 Subject: Replaced darkhttpd with lighttpd --- lighttpd.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lighttpd.conf (limited to 'lighttpd.conf') diff --git a/lighttpd.conf b/lighttpd.conf new file mode 100644 index 0000000..da72bf9 --- /dev/null +++ b/lighttpd.conf @@ -0,0 +1,20 @@ +# Minimal config by Kirmy34 + +include "/etc/lighttpd/mime-types.conf" + +server.port = 8080 + +server.username = "lighttpd" +server.groupname = "lighttpd" + +server.document-root = "/www" +server.pid-file = "/run/lighttpd.pid" + +server.indexfiles = ("index.php", "index.html", "index.htm", "default.htm") + +server.follow-symlink = "enable" + +static-file.exclude-extensions = (".php", ".pl", ".cgi", ".fcgi") + +url.access-deny = ("~", ".inc") + -- cgit v1.2.3