通过 nginx 反向代理进行 Vnc 连接

通过 nginx 反向代理进行 Vnc 连接

通过 nginx 反向代理进行的 novnc 连接无法正常工作,我使用的是 nginx 版本 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;
   }

当我使用这个 nginx 配置并通过以下方式访问 vnc 时http://127.0.0.1:80/它工作正常,但是当我将位置从 / 更改为 /console/ 并尝试通过http://127.0.0.1:80/控制台,它不起作用!!!

相关内容