Option to enable websockets for the noVNC console

This commit is contained in:
Kris Lamoureux 2022-12-06 00:15:10 -05:00
parent f68f57d0cf
commit c67a39982e
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925
2 changed files with 6 additions and 10 deletions

10
.gitignore vendored
View File

@ -1,13 +1,3 @@
.vagrant
.playbook
/*.yml
/*.yaml
!backup.yml
!moxie.yml
!docker.yml
!dockerbox.yml
!hypervisor.yml
!minecraft.yml
!proxy.yml
!unifi.yml
/environments/

View File

@ -46,6 +46,12 @@ server {
proxy_pass {{ item.proxy_pass }};
{% if item.proxy_ssl_verify is defined and item.proxy_ssl_verify is false %}
proxy_ssl_verify off;
{% endif %}
{% if item.websockets is defined and item.websockets %}
proxy_http_version 1.1;
proxy_set_header Connection $http_connection;
proxy_set_header Origin http://$host;
proxy_set_header Upgrade $http_upgrade;
{% endif %}
}
}