From 1c9203a5a8c328714280128fd837e9138b11c03e Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sat, 16 Sep 2023 14:04:49 +0200 Subject: [PATCH] Make sure HTML files are properly served --- conf/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index b8a06e8..27bca35 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,6 +1,7 @@ location / { # Path to source root __INSTALL_DIR__/frontend/build/; + default_type text/html; try_files $uri $uri/ /index.html @proxy; error_page 405 @proxy;