aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Rose <dr695h@att.com>2017-10-19 20:49:32 +0000
committerGerrit Code Review <gerrit@onap.org>2017-10-19 20:49:32 +0000
commit13405453f69e215b373cf2f72c5a8457af15ec22 (patch)
tree2174b0196a50387c5636275f798125c9203b4263
parent88910b5dae96cea3ba5e69308e55f681e11fbaab (diff)
parentf240d642f4e3e2f01fb075022b4023512647a0c1 (diff)
Merge "Additional mimetypes for lighttpd"
-rw-r--r--docker/lighttpd.conf5
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" )