initial import
This commit is contained in:
23
lighttpd/lighttpd.conf
Normal file
23
lighttpd/lighttpd.conf
Normal file
@@ -0,0 +1,23 @@
|
||||
# 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 = "/run/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",
|
||||
".css" => "text/css",
|
||||
".js" => "application/x-javascript",
|
||||
".jpg" => "image/jpeg",
|
||||
".jpeg" => "image/jpeg",
|
||||
".gif" => "image/gif",
|
||||
".png" => "image/png",
|
||||
"" => "application/octet-stream"
|
||||
)
|
||||
Reference in New Issue
Block a user