nginx/novnc.conf
2021-06-22 03:02:32 +00:00

32 lines
776 B
Text

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