diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-30 11:06:09 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-30 11:06:09 +0300 |
| commit | ce5180fbc09dc400b20d5946751106d80820dcbe (patch) | |
| tree | 3ffa3f8f968634bf605801f9ceab8d1b8a8a299e | |
| parent | 870459fa00ee203b7e763b6c8197ac3955692015 (diff) | |
conf: add text/css and image/x-icon content types
style.css was served with an empty Content-Type (httpd.contenttypes had no
'css' entry), so browsers refused to apply the stylesheet and the page
rendered unstyled. Add css->text/css and ico->image/x-icon.
| -rw-r--r-- | ychat/etc/ychat.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ychat/etc/ychat.conf b/ychat/etc/ychat.conf index c62d885..698f5cb 100644 --- a/ychat/etc/ychat.conf +++ b/ychat/etc/ychat.conf @@ -754,6 +754,12 @@ <option name="txt"> <value>text/plain</value> </option> + <option name="css"> + <value>text/css</value> + </option> + <option name="ico"> + <value>image/x-icon</value> + </option> <option name="default"> <value>text/html</value> </option> |
