From 04403179d7bc4a3f9a1c2019cc06f0dae3726dd9 Mon Sep 17 00:00:00 2001 From: Michael Auer Date: Tue, 11 Mar 2025 18:22:39 +0100 Subject: [PATCH] ~ nginx.conf: added "/browser" to try_files --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 3d20b43b2..4c2ff3c6a 100644 --- a/nginx.conf +++ b/nginx.conf @@ -6,7 +6,7 @@ server { gzip_comp_level 9; etag on; location / { - try_files $uri $uri/ /index.html; + try_files $uri $uri/ /browser/index.html; } location /static/ { add_header Cache-Control max-age=31536000;