From de96e7c687ddad794be070fd504c9df57f1aaafa Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Mon, 27 Apr 2026 13:26:20 +0300 Subject: [PATCH] fix: include standard mime.types in nginx config The custom types block replaced all default MIME types, causing index.html to be served as application/octet-stream. Include the system mime.types and only add the custom .rpm type on top. Co-Authored-By: Claude Opus 4.6 (1M context) --- asset/nginx/rpm.lair.cafe.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asset/nginx/rpm.lair.cafe.conf b/asset/nginx/rpm.lair.cafe.conf index 43cc463..9938dae 100644 --- a/asset/nginx/rpm.lair.cafe.conf +++ b/asset/nginx/rpm.lair.cafe.conf @@ -10,9 +10,9 @@ server { root /var/www/rpm; + include /etc/nginx/mime.types; types { application/x-rpm rpm; - application/xml xml; } default_type application/octet-stream;