summaryrefslogtreecommitdiff
path: root/extra/lighttpd/lighttpd.conf
blob: 8e8ab69e7b86d3638eca6659194d903fcaa530e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# This is a minimal example config
# See /usr/share/doc/lighttpd
# and http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions

server.port		= 80
server.username		= "http"
server.groupname	= "http"
server.document-root	= "/srv/http"
server.pid-file		= "/var/run/lighttpd/lighttpd.pid"
server.errorlog		= "/var/log/lighttpd/error.log"
dir-listing.activate	= "enable"
index-file.names	= ( "index.html" )
mimetype.assign		= ( ".html" => "text/html", ".txt" => "text/plain", ".jpg" => "image/jpeg", ".png" => "image/png" )