novnc connection through nginx reverse proxy is not working propraly i m using nginx version 1.14.1
events {}
http
{
server {
listen 80;
location / {
proxy_set_header Host $host;
proxy_set_header Connection "upgrade";
proxy_set_header Connection $http_connection;
proxy_pass http://192.168.8.1:6080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
}
when i m using this nginx configuration and access the vnc via http://127.0.0.1:80/ it work fine, but when i change the location from / to /console/ and trying to access via http://127.0.0.1:80/console , it not work !!!