From 39d0bc593ba89877a9f503e4b088d3091c265a2f Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Tue, 11 May 2021 11:19:59 +0200 Subject: [PATCH] return method not allowed --- docker/nginx/conf.d/client.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/nginx/conf.d/client.conf b/docker/nginx/conf.d/client.conf index 7337b50b..6af30b6f 100644 --- a/docker/nginx/conf.d/client.conf +++ b/docker/nginx/conf.d/client.conf @@ -400,7 +400,7 @@ server { } location /skynet/metadata { - limit_except GET { deny all; } + limit_except GET PATCH { return 405; } include /etc/nginx/conf.d/include/cors;