A
Size: a a a
el
location / {
try_files $uri $uri/ /index.html;
proxy_set_header X-Forwarded-Proto $scheme;
}location = / {
try_files $uri $uri/ /index.html;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
proxy_pass http://server:3000;
proxy_set_header X-Forwarded-Proto $scheme;
}А
А
А
A
location ~*^/($|.+\.(js|css|jpeg|jpg|etc)$) {
try_files $uri $uri/ /index.html;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
proxy_pass http://server:3000;
proxy_set_header X-Forwarded-Proto $scheme;
}location / {
try_files $uri $uri/ /index.html;
proxy_set_header X-Forwarded-Proto $scheme;
}location ~*^/(api|login|logout|callback) {
proxy_pass http://server:3000;
proxy_set_header X-Forwarded-Proto $scheme;
}