make config pages specify utf-8 content-type

This commit is contained in:
Ron Pedde 2005-04-16 23:13:59 +00:00
parent 40d97beea1
commit 2b6878495c
1 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,8 @@ typedef struct tag_contenttypes {
} CONTENTTYPES;
CONTENTTYPES config_default_types[] = {
{ ".css", "text/css" },
{ ".txt", "text/plain" },
{ ".css", "text/css; charset=utf-8" },
{ ".txt", "text/plain; charset=utf-8" },
{ NULL, NULL }
};