For the record we experience the same issue here with HAProxy with HTTP mode.
The HAProxy config is quite simple:
I try to downgrade novnc-pve from 0.6-4 to 0.5-9 but other issue shows up:
If I switch HAProxy to TCP mode it works like a sharm:
Setup:
The HAProxy config is quite simple:
Code:
backend pved-cdc
mode http
option httpchk GET / HTTP/1.0
option forwardfor except 127.0.0.1
default-server inter 10s
# Added to test proposed fixes
http-request del-header X-Frame-Options
http-request del-header Connection
http-request add-header X-Frame-Options SAMEORIGIN
http-request add-header Connection Upgrade
server pved01-cdc pved01-cdc:8006 ssl verify none check maxconn 32
server pved02-cdc pved02-cdc:8006 ssl verify none check backup maxconn 32
server pved03-cdc pved03-cdc:8006 ssl verify none check backup maxconn 32
I try to downgrade novnc-pve from 0.6-4 to 0.5-9 but other issue shows up:
If I switch HAProxy to TCP mode it works like a sharm:
Code:
listen pved-cdc-tcp
bind *:444
mode tcp
option tcplog
default-server inter 10s
server pved01-cdc pved01-cdc:8006 check maxconn 32
server pved02-cdc pved02-cdc:8006 backup maxconn 32
server pved03-cdc pved03-cdc:8006 backup maxconn 32
Setup:
- HAProxy: 1.7.5-1
- PVE: 5.2 (latest version)