diff --git a/novnc.conf b/novnc.conf new file mode 100644 index 0000000..93f576b --- /dev/null +++ b/novnc.conf @@ -0,0 +1,31 @@ +upstream vnc_proxy { + server 127.0.0.1:6080; +} + +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name client.exozy.me; + + ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem; + + location /vncws { + index vnc.html; + alias /usr/share/webapps/novnc/; + try_files $uri $uri/ /vnc.html; + } + + location /websockify { + proxy_http_version 1.1; + proxy_pass http://vnc_proxy/; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + + # VNC connection timeout + proxy_read_timeout 61s; + + # Disable cache + proxy_buffering off; + } +}