1
0
Fork 0
forked from exozyme/nginx

Add guacamole config file

This commit is contained in:
Anthony Wang 2021-08-23 20:12:15 -05:00
parent 4ac86fe2c5
commit 0d8e9a0d7f
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

19
guacamole.conf Normal file
View file

@ -0,0 +1,19 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name desk.exozy.me;
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
location / {
proxy_pass http://127.0.0.1:10080/guacamole/;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_cookie_path /guacamole/ /new-path/;
access_log off;
}
}