2021-12-09 12:09:09 +00:00
|
|
|
include "/etc/lighttpd/mime-types.conf"
|
2023-09-08 05:44:07 +00:00
|
|
|
include_shell "/etc/lighttpd/ipv6.sh"
|
2021-12-09 12:09:09 +00:00
|
|
|
|
2022-07-02 12:29:34 +00:00
|
|
|
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"
|
2022-07-03 20:09:14 +00:00
|
|
|
server.feature-flags += ( "server.clock-jump-restart" => 0 )
|