From 1c62edc53c97f36d596e0cf303ada83a885a635d Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 20 Sep 2011 16:50:22 +0200 Subject: [PATCH] added svg mimetype to default content types (thanks to Markus Kohlhase) --- src/web/mod_http_fileserver.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/web/mod_http_fileserver.erl b/src/web/mod_http_fileserver.erl index f6399ed60..811f037a9 100644 --- a/src/web/mod_http_fileserver.erl +++ b/src/web/mod_http_fileserver.erl @@ -81,9 +81,10 @@ {".html", "text/html"}, {".jar", "application/java-archive"}, {".jpeg", "image/jpeg"}, - {".jpg", "image/jpeg"}, + {".jpg", "image/jpeg"}, {".js", "text/javascript"}, {".png", "image/png"}, + {".svg", "image/svg+xml"}, {".txt", "text/plain"}, {".xml", "application/xml"}, {".xpi", "application/x-xpinstall"}, -- 2.50.1