Search results

  1. T

    reverse proxy nginx noVNC problem since V5

    I already have a wildcard certificate. My nginx config works perfectly for accessing all resources including xterm.js, but NoVNC (like the posters before me) is not consistent. I am able to connect 100% of the time but maybe 5% of the time the actual console loads. Switching up my entire server...
  2. T

    reverse proxy nginx noVNC problem since V5

    Same problem, working about 5% of the time when refreshing. Xterm works all of the time, but I need a graphical access too on some hosts. ip_hash in upstream did not solve the problem.
  3. T

    Unable to connect to PVE web console through reverse proxy

    Found a fix online, had to enable a websocket connection. Updated, working config: upstream proxmoxhost { server localhost:8006; } server { listen 80 http2; listen [::]:80 http2; server_name proxmox.domain.com; return 301 htt...
  4. T

    Unable to connect to PVE web console through reverse proxy

    I have an nginx reverse proxy running in an unprivileged container to access resources running in other containers / VM's with my 1 public IP. My nginx configuration is listed below. I can access the web interface, but I can't access the console on any of my VM's, containers, or host. I'm...
  5. T

    Unprivileged containers

    It's working for me, here are the steps I completed. Some may be redundant, but won't hurt: Make backup of container From inside the container: rm /var/spool/postfix/dev/random rm /var/spool/postfix/dev/urandom touch /var/spool/postfix/dev/random touch /var/spool/postfix/dev/urandom Add the...