blob: da72bf996b2727188691a58dd1304a43770bb001 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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")
|