mirror of
https://github.com/bastienwirtz/homer.git
synced 2024-11-07 08:44:00 +01:00
12 lines
409 B
Plaintext
12 lines
409 B
Plaintext
include "/etc/lighttpd/mime-types.conf"
|
|
|
|
server.port = env.PORT
|
|
server.modules = ( "mod_alias" )
|
|
server.username = "lighttpd"
|
|
server.groupname = "lighttpd"
|
|
server.document-root = "/www"
|
|
alias.url = ( env.SUBFOLDER => "/www" )
|
|
server.indexfiles = ("index.html")
|
|
server.follow-symlink = "enable"
|
|
server.feature-flags += ( "server.clock-jump-restart" => 0 )
|