diff options
-rw-r--r-- | docker/lighttpd.conf | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docker/lighttpd.conf b/docker/lighttpd.conf index 024a259c..e9a5a375 100644 --- a/docker/lighttpd.conf +++ b/docker/lighttpd.conf @@ -13,7 +13,10 @@ $HTTP["url"] =~ "^/logs/" { } mimetype.assign = ( - ".html" => "text/html" + ".log" => "text/plain", + ".txt" => "text/plain", + ".html" => "text/html", + ".xml" => "text/xml" ) static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~", ".inc", ".cgi" ) |