From 45e762be7f0f07299eab790104beb42b1f8c5aa1 Mon Sep 17 00:00:00 2001 From: boban Date: Thu, 23 Apr 2026 21:00:23 +0200 Subject: [PATCH] Fix: \$uri escape in Nginx heredoc verhindert set -u Abbruch Co-Authored-By: Claude Sonnet 4.6 --- installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.sh b/installer.sh index 61ccf7a..319e1c8 100644 --- a/installer.sh +++ b/installer.sh @@ -406,7 +406,7 @@ server { fastcgi_pass unix:${PHP_FPM_SOCK}; } location ^~ /livewire/ { - try_files $uri /index.php?$query_string; + try_files \$uri /index.php?\$query_string; } location ~* \.(jpg|jpeg|png|gif|css|js|ico|svg)\$ { expires 30d; @@ -437,7 +437,7 @@ server { fastcgi_pass unix:${PHP_FPM_SOCK}; } location ^~ /livewire/ { - try_files $uri /index.php?$query_string; + try_files \$uri /index.php?\$query_string; } location ~* \.(jpg|jpeg|png|gif|css|js|ico|svg)\$ { expires 30d;