From edfc4181d263ee4bedfd46383bf408a53ef2a058 Mon Sep 17 00:00:00 2001 From: janis steiner Date: Wed, 6 May 2026 12:09:43 +0200 Subject: [PATCH] fix login --- docker/nginx.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker/nginx.conf b/docker/nginx.conf index cef55a2..f413fc6 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -3,8 +3,12 @@ server { root /app/public; index index.html; + location = / { + try_files /index.html /index.php$is_args$args; + } + location / { - try_files $uri /index.html /index.php$is_args$args; + try_files $uri /index.php$is_args$args; } location ~ \.php$ {