diff options
Diffstat (limited to 'server-config/www.the-brannons.com/etc/lighttpd/mime.conf')
-rw-r--r-- | server-config/www.the-brannons.com/etc/lighttpd/mime.conf | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/server-config/www.the-brannons.com/etc/lighttpd/mime.conf b/server-config/www.the-brannons.com/etc/lighttpd/mime.conf new file mode 100644 index 0000000..49a37c7 --- /dev/null +++ b/server-config/www.the-brannons.com/etc/lighttpd/mime.conf @@ -0,0 +1,56 @@ +mimetype.use-xattr = "enable" +mimetype.xattr-name = "user.Content-Type" +mimetype.assign = ( ".html" => "text/html; charset=utf-8", +".txt" => "text/plain; charset=utf-8", +".jpg" => "image/jpeg", +".png" => "image/png", +".htm" => "text/html; charset=utf-8", +".xml" => "text/xml; charset=utf-8", +".rss20" => "text/xml; charset=utf-8", + ".pdf" => "application/pdf", + ".sig" => "application/pgp-signature", + ".spl" => "application/futuresplash", + ".class" => "application/octet-stream", + ".ps" => "application/postscript", + ".torrent" => "application/x-bittorrent", + ".dvi" => "application/x-dvi", + ".pac" => "application/x-ns-proxy-autoconfig", + ".swf" => "application/x-shockwave-flash", + ".tar.gz" => "application/x-tgz", + ".tgz" => "application/x-tgz", + ".gz" => "application/x-gzip", + ".tar" => "application/x-tar", + ".zip" => "application/zip", + ".mp3" => "audio/mpeg", + ".m3u" => "audio/x-mpegurl", + ".wma" => "audio/x-ms-wma", + ".wax" => "audio/x-ms-wax", + ".ogg" => "audio/ogg", + ".wav" => "audio/x-wav", + ".gif" => "image/gif", + ".jpeg" => "image/jpeg", + ".xbm" => "image/x-xbitmap", + ".xpm" => "image/x-xpixmap", + ".xwd" => "image/x-xwindowdump", + ".css" => "text/css", + ".js" => "text/javascript; charset=utf-8", + ".c" => "text/plain; charset=utf-8", + ".cpp" => "text/plain; charset=utf-8", + ".log" => "text/plain; charset=utf-8", + ".conf" => "text/plain; charset=utf-8", + ".text" => "text/plain; charset=utf-8", + ".dtd" => "text/xml; charset=utf-8", + ".mpeg" => "video/mpeg", + ".mpg" => "video/mpeg", + ".mov" => "video/quicktime", + ".qt" => "video/quicktime", + ".avi" => "video/x-msvideo", + ".asf" => "video/x-ms-asf", + ".asx" => "video/x-ms-asf", + ".wmv" => "video/x-ms-wmv", + ".tbz" => "application/x-bzip-compressed-tar", + ".tar.bz2" => "application/x-bzip-compressed-tar", + ".bz2" => "application/x-bzip", + ".rpm" => "application/x-rpm", + # make the default mime type application/octet-stream. + "" => "application/octet-stream") |