I upgraded from Proxmox 4.4 to 5.0 and have an NGINX proxy in front of the server (no loadbalancing).
Now i don't get any console in novnc, even not on the host itself.
- Display is set to "std"
- NGINX version 1.10.3
- NGINX Proxy config:
Space in links added because of antispam measurements
- Screenshot of Browser console attached.
Help would be very much appreciated.
Now i don't get any console in novnc, even not on the host itself.
- Display is set to "std"
- NGINX version 1.10.3
- NGINX Proxy config:
Code:
server {
listen [::]:80 ipv6only=on;
listen 80 default_server;
rewrite ^(.*) http s://$host$1 permanent;
}
server {
listen [::]:443 ipv6only=on ssl http2;
listen 443 ssl http2;
server_name _;
ssl on;
ssl_certificate /etc/letsencrypt/live/<DOMAIN>/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/<DOMAIN>/privkey.pem;
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";
#add_header X-Frame-Options DENY;
#add_header X-Content-Type-Options nosniff;
ssl_session_tickets off;
ssl_stapling on;
ssl_stapling_verify on;
proxy_redirect off;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http s://127.0.0.1:8006;
proxy_buffering off;
client_max_body_size 0;
proxy_connect_timeout 3600s;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
send_timeout 3600s;
}
location /.well-known {
root /var/www/html;
}
}
- Screenshot of Browser console attached.
Help would be very much appreciated.