Add password auth to guacamole

This commit is contained in:
Anthony Wang 2021-11-10 11:20:19 -06:00
parent a0f6c955c6
commit 210d374167
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -1,7 +1,7 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name desk.exozy.me app.exozy.me 97.88.196.36;
server_name desk.exozy.me;
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
@ -17,3 +17,26 @@ server {
access_log off;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name app.exozy.me 97.88.196.36;
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
auth_basic "This is a test";
auth_basic_user_file /etc/nginx/.htpasswd;
location / {
proxy_pass http://127.0.0.1:11080/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;
}
}