From: Badlop Date: Tue, 20 Sep 2011 14:50:22 +0000 (+0200) Subject: added svg mimetype to default content types (thanks to Markus Kohlhase) X-Git-Tag: v2.1.9~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f4ae0710073c640cbaeaa89b1a02eea3c81e73a;p=ejabberd added svg mimetype to default content types (thanks to Markus Kohlhase) --- diff --git a/src/web/mod_http_fileserver.erl b/src/web/mod_http_fileserver.erl index 95c080bc3..bd730b293 100644 --- a/src/web/mod_http_fileserver.erl +++ b/src/web/mod_http_fileserver.erl @@ -91,9 +91,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"},