Making the .ico MIME type consistent with actual web practice.

git-svn-id: file:///home/jj/hercules.svn/trunk@3465 956126f8-22a0-4046-8f4a-272fa8102e63
This commit is contained in:
Jay Maynard
2005-12-19 15:52:28 +00:00
parent 4770af0732
commit 11e8ed8dc9
3 changed files with 8 additions and 4 deletions

View File

@@ -49,7 +49,11 @@ static MIMETAB mime_types[] = {
{ "css", "text/css" },
{ "html", "text/html" },
{ "htm", "text/html" },
/* This one should be:
{ "ico", "image/vnd.microsoft.icon" },
but Apache 2 sets it as: */
{ "ico", "image/x-icon" },
/* so we'll go with what's actually in use. --JRM */
{ NULL, NULL } }; /* Default suffix entry */