diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-06-21 15:16:02 -0400 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-06-21 15:16:02 -0400 |
commit | cca2969a9e2c8eaaf9ece730dfa1b7f7793ad030 (patch) | |
tree | 9991e50246b0e0b0f6692e74d78c3e0524c37478 | |
parent | 6e8f7774235ecd00f94071374838c17f48378a7a (diff) | |
download | html5ks-cca2969a9e2c8eaaf9ece730dfa1b7f7793ad030.tar.xz html5ks-cca2969a9e2c8eaaf9ece730dfa1b7f7793ad030.zip |
serve svg with the right mime type
-rw-r--r-- | lighttpd.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lighttpd.conf b/lighttpd.conf index d874a01..0f75ce8 100644 --- a/lighttpd.conf +++ b/lighttpd.conf @@ -8,6 +8,7 @@ mimetype.assign = ( ".jpg" => "image/jpeg", ".png" => "image/png", ".webp" => "image/webp", + ".svg" => "image/svg", ".webm" => "video/webm", ".mkv" => "video/x-matroska", ".ogg" => "audio/ogg", |