From c98c0e52a0afe523c53e8dd320b39a3d0018999c Mon Sep 17 00:00:00 2001 From: kkfluous Date: Fri, 5 Jun 2026 16:47:22 +0800 Subject: [PATCH] fix: simplify nginx try_files to standard SPA fallback pattern --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 33cbeff..d267416 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN echo "server {\ root /usr/share/nginx/html/lnbox;\ index index.html;\ location / {\ - try_files \$uri \$uri/ /index.html;\ + try_files \$uri /index.html;\ }\ }" > /etc/nginx/conf.d/default.conf