From a57206f8b20c65913b1e41313093764308f66505 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Thu, 4 Apr 2024 11:50:41 -0300 Subject: [PATCH] Set nginx mime types --- astro/nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/astro/nginx.conf b/astro/nginx.conf index 76ea293..014ad92 100644 --- a/astro/nginx.conf +++ b/astro/nginx.conf @@ -3,6 +3,7 @@ events { } http { + include mime.types; gzip on; gzip_vary on; gzip_proxied any; @@ -32,4 +33,4 @@ http { error_page 404 /error_page.html; } -} \ No newline at end of file +}