diff options
author | 2015-05-19 18:12:58 +0000 | |
---|---|---|
committer | 2015-05-19 18:12:58 +0000 | |
commit | a2f54fd26f862457e0cf13d4881b400b2ae43135 (patch) | |
tree | 31c6ca4c1c586599466a71f85fd0eadb220fb9e6 | |
parent | drop comment about being possible to include /etc/nginx/mime.types, (diff) | |
download | wireguard-openbsd-a2f54fd26f862457e0cf13d4881b400b2ae43135.tar.xz wireguard-openbsd-a2f54fd26f862457e0cf13d4881b400b2ae43135.zip |
sort media type extensions for text/html and image/jpeg as given in
/usr/share/misc/mime.types; do not include shtml as it is for Server
Side Includes (SSI) -- we will never do SSI.
joint work with reyk@
ok reyk@
-rw-r--r-- | usr.sbin/httpd/httpd.conf.5 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/httpd/httpd.conf.5 b/usr.sbin/httpd/httpd.conf.5 index d9f46e69785..dd9795ce15f 100644 --- a/usr.sbin/httpd/httpd.conf.5 +++ b/usr.sbin/httpd/httpd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: httpd.conf.5,v 1.58 2015/05/19 18:03:32 sobrado Exp $ +.\" $OpenBSD: httpd.conf.5,v 1.59 2015/05/19 18:12:58 sobrado Exp $ .\" .\" Copyright (c) 2014, 2015 Reyk Floeter <reyk@openbsd.org> .\" @@ -452,10 +452,10 @@ server "default" { types { text/css css - text/html htm html + text/html html htm text/txt txt image/gif gif - image/jpeg jpg jpeg + image/jpeg jpeg jpg image/png png application/javascript js application/xml xml |