From 1fdc3635e608113bc35f28299f5056e5f933796a Mon Sep 17 00:00:00 2001 From: Arazil Date: Fri, 20 Jun 2025 08:06:32 -0500 Subject: [PATCH] Docker: Add mime.types To nginx Configuration Explicit configuration of nginx MIME types is required for the proper operation the radar viewer. --- nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx.conf b/nginx.conf index a770d7e..40d7545 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,7 @@ server { listen 8080; server_name localhost; + include mime.types; root /usr/share/nginx/html;