All checks were successful
Docker Build Smart Logic / Build amd64 & arm64 (push) Successful in 12s
26 lines
599 B
Plaintext
26 lines
599 B
Plaintext
server.document-root = "/app/www"
|
|
|
|
server.port = 80
|
|
|
|
server.username = "abc"
|
|
server.groupname = "users"
|
|
|
|
# Mime Types laden (wichtig für CSS/JS)
|
|
mimetype.assign = (
|
|
".html" => "text/html",
|
|
".txt" => "text/plain",
|
|
".jpg" => "image/jpeg",
|
|
".png" => "image/png",
|
|
".css" => "text/css",
|
|
".js" => "application/x-javascript",
|
|
".svg" => "image/svg+xml"
|
|
)
|
|
|
|
# Module laden
|
|
server.modules += ( "mod_access", "mod_accesslog" )
|
|
|
|
# Index Dateien
|
|
index-file.names = ( "index.html" )
|
|
|
|
# Verhindert, dass Lighttpd im Hintergrund läuft (wichtig für s6)
|
|
server.event-handler = "linux-sysepoll" |