2013-02-21 15:00:08 +00:00
|
|
|
###############################################
|
|
|
|
# this file defines various mime types that
|
|
|
|
# can be @included in a mime block.
|
|
|
|
###############################################
|
|
|
|
|
2019-11-02 05:23:14 +00:00
|
|
|
# use name to set the type for a particular file
|
|
|
|
#name "/abc/x.jpg" = "specific mime type";
|
|
|
|
|
2013-02-21 15:00:08 +00:00
|
|
|
suffix ".htm" = "text/html";
|
|
|
|
suffix ".html" = "text/html";
|
|
|
|
suffix ".txt" = "text/plain";
|
2013-11-05 02:53:01 +00:00
|
|
|
suffix ".log" = "text/plain";
|
2013-02-21 15:00:08 +00:00
|
|
|
suffix ".css" = "text/css";
|
|
|
|
suffix ".xml" = "text/xml";
|
|
|
|
suffix ".js" = "application/javascript";
|
|
|
|
suffix ".jpg" = "image/jpeg";
|
|
|
|
suffix ".png" = "image/png";
|
|
|
|
|
|
|
|
# other can override the built-in default.
|
|
|
|
#other = "default mime type";
|