homer/lighttpd.conf

11 lines
339 B
Plaintext
Raw Normal View History

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" )
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"