summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-06-30 11:06:09 +0300
committerPaul Buetow <paul@buetow.org>2026-06-30 11:06:09 +0300
commitce5180fbc09dc400b20d5946751106d80820dcbe (patch)
tree3ffa3f8f968634bf605801f9ceab8d1b8a8a299e
parent870459fa00ee203b7e763b6c8197ac3955692015 (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.conf6
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>