Update:
Ended up using nginx to proxy the WebUI instead, and then another proxy to point to the Apache webserver.
This is the config that works for me on nginx (/etc/nginx/sites-enabled/default):
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 443...
What Vrang posted works for me, here is my entire config (/etc/nginx/sites-enabled/default):
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 443 ssl;
ssl on;
ssl_certificate /etc/ssl/nginx/bundle.crt;
ssl_certificate_key...
Hi,
I've managed to setup apache on one of my VMs to show the Proxmox WebUI on port 443. (https://example.com/proxmox/)
Everything works fine except for noVNC, when I try to connect I get a message saying "Server disconnection (code: 1006)" and in the Google Chrome developer console I receive...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.