All checks were successful
Docker Build Smart Logic / Build amd64 & arm64 (push) Successful in 13s
22 lines
524 B
Plaintext
22 lines
524 B
Plaintext
server.document-root = "/app/www"
|
|
|
|
server.port = 80
|
|
|
|
server.username = "abc"
|
|
server.groupname = "users"
|
|
|
|
# Mime Types laden (wichtig für CSS/JS)
|
|
include "/etc/lighttpd/mime-types.conf"
|
|
|
|
# Module laden
|
|
server.modules += ( "mod_access", "mod_accesslog" )
|
|
|
|
# Index Dateien
|
|
index-file.names = ( "index.html" )
|
|
|
|
# Logging nach stdout/stderr für Docker
|
|
server.errorlog = "/dev/stderr"
|
|
accesslog.filename = "/dev/stdout"
|
|
|
|
# Verhindert, dass Lighttpd im Hintergrund läuft (wichtig für s6)
|
|
server.event-handler = "linux-sysepoll" |