summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarix <darix@152afb58-edef-0310-8abb-c4023f1b3aa9>2013-06-25 10:20:15 +0000
committerdarix <darix@152afb58-edef-0310-8abb-c4023f1b3aa9>2013-06-25 10:20:15 +0000
commitaa9eef4beefa9f8f4f4ecde2caddd3dd41c039d3 (patch)
tree483e7e98e73d0eadf97f2dc775a97e13ea82c382
parent1cffe1e238f517aead4d00a4c23e9eb54ee0d1f9 (diff)
downloadlighttpd-aa9eef4beefa9f8f4f4ecde2caddd3dd41c039d3.tar.gz
added mime type for json files
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2874 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r--doc/config/conf.d/mime.conf1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/config/conf.d/mime.conf b/doc/config/conf.d/mime.conf
index a3c6f0c3..8cfdfe72 100644
--- a/doc/config/conf.d/mime.conf
+++ b/doc/config/conf.d/mime.conf
@@ -67,6 +67,7 @@ mimetype.assign = (
".tbz" => "application/x-bzip-compressed-tar",
".tar.bz2" => "application/x-bzip-compressed-tar",
".rpm" => "application/x-rpm",
+ ".json" => "application/json",
# make the default mime type application/octet-stream.
"" => "application/octet-stream",
)