]>
Commit | Line | Data |
---|---|---|
b6b31e44 K |
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 |