From 6aa2296dea321c443442c75d688e6c85f81624e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 17 Mar 2024 08:43:31 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20403=20when=20the=20fronten?= =?UTF-8?q?d=20has=20a=20directory=20without=20an=20index.html=20(#1094)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/nginx.conf b/frontend/nginx.conf index fd4472f..ba4d9aa 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -4,7 +4,7 @@ server { location / { root /usr/share/nginx/html; index index.html index.htm; - try_files $uri $uri/ /index.html =404; + try_files $uri /index.html =404; } include /etc/nginx/extra-conf.d/*.conf;