server {
listen 1001;
server_name ###.##.##.##;
root /www/web/build;
index index.html index.htm;
location ~ /web/* {
proxy_pass http://###.##.##.##:1000;
}
location / {
try_files $uri $uri/ /index.html;
}
}