diff --git a/default.conf b/default.conf index ddf758e..40b34a3 100644 --- a/default.conf +++ b/default.conf @@ -302,7 +302,7 @@ server { proxy_pass https://storage.yandexcloud.net; } - location ~ ^/verification/?((?<=/).*)?$ { + location ^ /verification(?:/|$) { if ($request_method = OPTIONS) { add_header Access-Control-Allow-Origin $http_origin always; add_header Access-Control-Allow-Credentials true always; @@ -322,8 +322,8 @@ server { chunked_transfer_encoding off; proxy_buffering off; proxy_cache off; - - proxy_pass http://$apiversion/$1; + rewrite ^/verification/?(.*) /$1; + proxy_pass http://$apiversion; } location / {