s
Size: a a a
s
AZ
s
s
location ~ /cabinet/(.*) {
rewrite (.*) /cabinet/ break;
proxy_pass http://localhost:3011;
}
s
ВМ
s
AZ
ВМ
s
s
AZ
ВМ
s
location ~ /cabinet/(.*) {
rewrite (.*) /cabinet/$1 break;
proxy_pass http://localhost:3011;
}
s
location ~ /cabinet/(.*) {
proxy_pass http://localhost:3011/cabinet/$1;
}
ВМ
location /cabinet/ {
proxy_pass http://localhost:3011/cabinet/;
}
ВМ
ВМ