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