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"