location /ws {
proxy_pass $BACKEND_URL;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
location / {
root /home/html/admin/;
try_files $uri /index.html;
}
location /interview {
root /home/html/;
try_files $uri $uri/index.html;
}