2021-12-09 13:09:09 +01:00
|
|
|
include "/etc/lighttpd/mime-types.conf"
|
|
|
|
|
2022-03-20 21:46:36 +01:00
|
|
|
server.port = env.PORT
|
|
|
|
server.modules = ( "mod_alias" )
|
2022-04-10 11:55:11 +02:00
|
|
|
server.username = "lighttpd"
|
|
|
|
server.groupname = "lighttpd"
|
2022-03-20 21:46:36 +01:00
|
|
|
server.document-root = "/www"
|
|
|
|
alias.url = ( env.SUBFOLDER => "/www" )
|
|
|
|
server.indexfiles = ("index.html")
|
2021-12-09 13:09:09 +01:00
|
|
|
server.follow-symlink = "enable"
|