From a9d546f1b964e918ce1d59bea2f1633b15ebf1e5 Mon Sep 17 00:00:00 2001 From: Thatoo Date: Wed, 20 Dec 2023 17:30:50 +0100 Subject: [PATCH] Update nginx.conf To make Gestion app work --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index d8c5a82..4113f7a 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -135,7 +135,7 @@ location ^~ __PATH__/ { } location ~ / { - if ($request_method ~ ^(PUT|DELETE|PATCH)$) { + if ($request_method ~ ^(PUT|DELETE|PATCH|PROPFIND|PROPPATCH)$) { rewrite ^ __PATH__/index.php$request_uri last; } try_files $uri / __PATH__/index.php$request_uri;