From 9154c9b1ea9f11278626d2f6f90404428faa2155 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Thu, 23 Dec 2021 21:07:45 -0600 Subject: [PATCH] Replace all occurences of 11080 with 4080 for new Tomcat port --- guacamole.conf | 4 ++-- jupyterhub.conf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/guacamole.conf b/guacamole.conf index 234a91a..b5b7bfc 100644 --- a/guacamole.conf +++ b/guacamole.conf @@ -13,7 +13,7 @@ server { ssl_stapling_verify on; location / { - proxy_pass http://localhost:11080/guacamole/; + 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; @@ -41,7 +41,7 @@ server { auth_basic_user_file /etc/nginx/.htpasswd; location / { - proxy_pass http://localhost:11080/guacamole/; + 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; diff --git a/jupyterhub.conf b/jupyterhub.conf index eecf4ae..a6e89ba 100644 --- a/jupyterhub.conf +++ b/jupyterhub.conf @@ -18,7 +18,7 @@ server { } location /hub/desk/ { - proxy_pass http://localhost:11080/guacamole/; + 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;