From 1b9290252a4db752d28d4af9742e7a074c25ad21 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Fri, 13 May 2022 19:58:23 -0500 Subject: [PATCH] Remove bare IP domain from Guacamole config --- guacamole.conf | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/guacamole.conf b/guacamole.conf index fa301f4..3d80169 100644 --- a/guacamole.conf +++ b/guacamole.conf @@ -15,24 +15,3 @@ server { access_log off; } } - -server { - listen 443 ssl http2; - listen [::]:443 ssl http2; - server_name 97.88.196.36; - - include conf.d/ssl; - - auth_basic "This is a test"; - auth_basic_user_file /etc/nginx/.htpasswd; - - location / { - proxy_pass http://localhost:4080/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; - access_log off; - } -}