From 9f4ae0710073c640cbaeaa89b1a02eea3c81e73a 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 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"},