Blank console

ImageJPEG

New Member
Jul 14, 2017
6
0
1
34
I'm currently running Proxmox 5.0-30 using Linux kernel 4.4.67-92. (I have to use an older kernel version since the newer ones don't currently work due to the watchdog).

Anyway, I can access the console on my VMs just fine if I type the IP address of my VM host. However, when I use my domain name, the console doesn't work.

I have Proxmox being proxied through nginx since I have a few web services being hosted. I've made sure to allow websocks. At the bottom, I'll post the Proxmox nginx settings.

Anyway, any suggestions?

Code:
    server {
        listen            10.0.100.101:443 ssl http2;
        server_name        vm.elem14tech.net;
        add_header        Strict-Transport-Security "max-age=31536000";
        ssl            on;
        ssl_certificate        /etc/ssl/web/vm.elem14tech.net/vm.elem14tech.net.crt.pem;
        ssl_certificate_key    /etc/ssl/web/vm.elem14tech.net/vm.elem14tech.net.key.pem;
        ssl_dhparam        /etc/ssl/web/vm.elem14tech.net/vm.elem14tech.net.dh4096.pem;
        ssl_ciphers        'EECDH+AES256GCM:EDH+AES256GCM:AES256+EECDH:AES256+EDH';
        ssl_session_cache    shared:SSL:10m;
        proxy_redirect        off;
        root            /var/www/proxied;
        location / {
            proxy_http_version    1.1;
            proxy_buffering        off;
            proxy_set_header    Upgrade $http_upgrade;
            proxy_set_header    Connection "Upgrade";
            proxy_set_header    Host $host;
            proxy_set_header    X-Real-IP $remote_addr;
            proxy_set_header    X-Forward-For $proxy_add_x_forwarded_for;
            proxy_pass        https://proxied_vm.elem14tech.net;
        }
    }
 
is that really the url? if yes, underscore is not an allowed character for host names
I was hoping that was it.

I changed the config so that instead of underscores, I used dashes ( - ). Still no change in behavior.
 
is the missing port (8006) on the proxy pass deliberate?