Create novnc.conf

This commit is contained in:
Anthony Wang 2021-06-22 03:02:32 +00:00 committed by GitHub
parent 96f2855276
commit 2097fa1773
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

31
novnc.conf Normal file
View file

@ -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;
}
}