diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-02 13:28:29 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-02 13:28:29 +0000 |
commit | 7fce085a9765cf41947515caead3100f7fab65e2 (patch) | |
tree | ffec9a88add3ff30c6729139cd9b83744cee5c9b /package/uhttpd/src | |
parent | 995face56d5d8f701a505dd2ed9d827a69384675 (diff) | |
download | upstream-7fce085a9765cf41947515caead3100f7fab65e2.tar.gz upstream-7fce085a9765cf41947515caead3100f7fab65e2.tar.bz2 upstream-7fce085a9765cf41947515caead3100f7fab65e2.zip |
uhttpd: add "application/x-ns-proxy-autoconfig" mime type (#8236)
SVN-Revision: 28149
Diffstat (limited to 'package/uhttpd/src')
-rw-r--r-- | package/uhttpd/src/uhttpd-mimetypes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/uhttpd/src/uhttpd-mimetypes.h b/package/uhttpd/src/uhttpd-mimetypes.h index 032d3d0c25..21717c0003 100644 --- a/package/uhttpd/src/uhttpd-mimetypes.h +++ b/package/uhttpd/src/uhttpd-mimetypes.h @@ -76,6 +76,9 @@ static struct mimetype uh_mime_types[] = { { "cfg", "text/plain" }, { "conf", "text/plain" }, + { "pac", "application/x-ns-proxy-autoconfig" }, + { "wpad.dat", "application/x-ns-proxy-autoconfig" }, + { NULL, NULL } }; |