Fixes nginx match rule, containing wrong chars.

Also adds a missing '/'.
This commit is contained in:
damencho 2019-11-15 13:27:49 +00:00 committed by Дамян Минков
parent d9cc664ea6
commit 1fd326f980
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ server {
proxy_set_header Host $http_host;
}
location ~ ^/([^?&:’“]+)$ {
location ~ ^/([^/?&:'"]+)$ {
try_files $uri @root_path;
}