2019-09-25 00:08:27 +02:00
|
|
|
server.port = 80
|
|
|
|
server.document-root = "/app"
|
|
|
|
server.errorlog = "/dev/stdout"
|
|
|
|
accesslog.filename = "/dev/stdout"
|
|
|
|
dir-listing.activate = "disable"
|
|
|
|
server.modules = (
|
|
|
|
"mod_access",
|
|
|
|
"mod_accesslog",
|
|
|
|
)
|
|
|
|
include "mime-types.conf"
|
|
|
|
server.pid-file = "/run/lighttpd.pid"
|
|
|
|
index-file.names = ( "index.html", "index.htm" )
|
2019-11-02 05:47:04 +01:00
|
|
|
#url.rewrite-once = ( "^sengi/(.*)" => "/sengi/index.html" )
|
2020-09-02 06:58:19 +02:00
|
|
|
server.error-handler-404 = "/index.html"
|