From 198ab835fb5408c5b6bbab812a32b30cca653a3f Mon Sep 17 00:00:00 2001 From: inference Date: Sat, 28 Jun 2025 21:12:01 +0000 Subject: [PATCH] feat(nginx): remove MIME types MIME types are included in the global Nginx configuration file. --- xb-00-01/nginx/website.conf | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/xb-00-01/nginx/website.conf b/xb-00-01/nginx/website.conf index fec37be..fc070ad 100644 --- a/xb-00-01/nginx/website.conf +++ b/xb-00-01/nginx/website.conf @@ -1,6 +1,6 @@ # Inferencium - xb-00-01 # Nginx - Configuration - Website -# Version: 10.0.0-alpha.8 +# Version: 10.0.0-alpha.9 # Copyright 2022 Jake Winters # SPDX-License-Identifier: BSD-3-Clause @@ -71,13 +71,3 @@ server { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } - -# MIME types -types { - text/html html; - text/css css; - text/xml xml; - text/plain txt; - image/png png; - image/jpeg jpg; -}