diff options
author | Kirmy <mikekirmizakis@gmail.com> | 2021-12-09 13:09:09 +0100 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-04-30 10:46:00 +0200 |
commit | b6b31e440c7915e82fe8b9a4b93083ec9fb2e9fd (patch) | |
tree | 428c97994906574b552f3857f74306a0d8154842 /lighttpd.conf | |
parent | caf5fae8a849f740a603e0377be75df2043fae7f (diff) | |
download | homer-b6b31e440c7915e82fe8b9a4b93083ec9fb2e9fd.tar.gz homer-b6b31e440c7915e82fe8b9a4b93083ec9fb2e9fd.tar.zst homer-b6b31e440c7915e82fe8b9a4b93083ec9fb2e9fd.zip |
Replaced darkhttpd with lighttpd
Diffstat (limited to 'lighttpd.conf')
-rw-r--r-- | lighttpd.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lighttpd.conf b/lighttpd.conf new file mode 100644 index 0000000..da72bf9 --- /dev/null +++ b/lighttpd.conf | |||
@@ -0,0 +1,20 @@ | |||
1 | # Minimal config by Kirmy34 | ||
2 | |||
3 | include "/etc/lighttpd/mime-types.conf" | ||
4 | |||
5 | server.port = 8080 | ||
6 | |||
7 | server.username = "lighttpd" | ||
8 | server.groupname = "lighttpd" | ||
9 | |||
10 | server.document-root = "/www" | ||
11 | server.pid-file = "/run/lighttpd.pid" | ||
12 | |||
13 | server.indexfiles = ("index.php", "index.html", "index.htm", "default.htm") | ||
14 | |||
15 | server.follow-symlink = "enable" | ||
16 | |||
17 | static-file.exclude-extensions = (".php", ".pl", ".cgi", ".fcgi") | ||
18 | |||
19 | url.access-deny = ("~", ".inc") | ||
20 | |||