From 7fba53245a7c0d9cf88fce010a38708d6dab86c6 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Fri, 20 Nov 2020 08:33:18 +0100 Subject: [PATCH] nodes/htz-cloud.luther: always put requests to urls starting with /update to update.php --- data/nginx/files/extras/htz-cloud.luther/luther-ps | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data/nginx/files/extras/htz-cloud.luther/luther-ps b/data/nginx/files/extras/htz-cloud.luther/luther-ps index 6cba438..f5a95e6 100644 --- a/data/nginx/files/extras/htz-cloud.luther/luther-ps +++ b/data/nginx/files/extras/htz-cloud.luther/luther-ps @@ -14,6 +14,10 @@ try_files $uri /index.php?$query_string; } + location /update { + try_files $uri /update.php; + } + location @rewrite { rewrite ^ /index.php; }