1
0
Fork 0
forked from exozyme/nginx
nginx/guacamole.conf

53 lines
1.8 KiB
Text
Raw Normal View History

2021-08-24 01:12:15 +00:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
2021-11-10 17:20:19 +00:00
server_name desk.exozy.me;
2021-08-24 01:12:15 +00:00
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
2021-11-25 04:08:25 +00:00
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
add_header Strict-Transport-Security "max-age=31536000" always;
ssl_trusted_certificate /etc/letsencrypt/live/exozy.me/chain.pem;
ssl_stapling on;
ssl_stapling_verify on;
2021-08-24 01:12:15 +00:00
location / {
proxy_pass http://localhost:4080/guacamole/;
2021-08-24 01:12:15 +00:00
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;
access_log off;
}
}
2021-11-10 17:20:19 +00:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
2021-11-25 00:06:06 +00:00
server_name 97.88.196.36;
2021-11-10 17:20:19 +00:00
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
2021-11-25 04:08:25 +00:00
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
add_header Strict-Transport-Security "max-age=31536000" always;
ssl_trusted_certificate /etc/letsencrypt/live/exozy.me/chain.pem;
ssl_stapling on;
ssl_stapling_verify on;
2021-11-10 17:20:19 +00:00
auth_basic "This is a test";
auth_basic_user_file /etc/nginx/.htpasswd;
location / {
proxy_pass http://localhost:4080/guacamole/;
2021-11-10 17:20:19 +00:00
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;
access_log off;
}
}