From 85e07053410d27efb65f6cd73f8b953203687185 Mon Sep 17 00:00:00 2001 From: Thatoo Date: Tue, 14 Nov 2023 11:40:35 +0100 Subject: [PATCH] Update nginx.conf --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 36de478..e1d9016 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -150,7 +150,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;