From 4a73383251f8484fc454ad40851dcdc7b18e270e Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Sat, 16 Aug 2025 14:32:38 +0200 Subject: [PATCH] Use upstream's regexp --- webmails/nginx-webmail.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webmails/nginx-webmail.conf b/webmails/nginx-webmail.conf index ea97a28f..25e34383 100644 --- a/webmails/nginx-webmail.conf +++ b/webmails/nginx-webmail.conf @@ -37,7 +37,7 @@ server { } location ~ ^(.+\.php)(.*)$ { - fastcgi_split_path_info ^(.+?\.php)(/.*)$; + fastcgi_split_path_info ^(.+\.php)(.*)$; if (!-f $document_root$fastcgi_script_name) { return 404; }