From 3c1bab98b603cfa8411bfafe6abd0547692f669d Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Fri, 16 Feb 2024 14:00:33 -0500 Subject: [PATCH] chore: use plain-http port for no-TLS Keycloak --- conf/nginx.conf.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf.tpl b/conf/nginx.conf.tpl index 259d9d0..4d9ba6c 100644 --- a/conf/nginx.conf.tpl +++ b/conf/nginx.conf.tpl @@ -120,7 +120,7 @@ http { include /gateway/conf/proxy.conf; # Immediate set/re-use means we don't get resolve errors if not up (as opposed to passing as a literal) - set $upstream_auth http://${BENTOV2_AUTH_CONTAINER_NAME}:${BENTOV2_AUTH_INTERNAL_PORT}; + set $upstream_auth http://${BENTOV2_AUTH_CONTAINER_NAME}:${BENTOV2_AUTH_INTERNAL_PORT_PLAIN_HTTP}; proxy_pass $upstream_auth; error_log /var/log/bentov2_auth_errors.log;