qse/cmd/http/httpd-mime.conf

21 lines
619 B
Plaintext
Raw Normal View History

###############################################
# 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";
suffix ".htm" = "text/html";
suffix ".html" = "text/html";
suffix ".txt" = "text/plain";
2013-11-05 02:53:01 +00:00
suffix ".log" = "text/plain";
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";