From 9dcb67b26212fec3871e577be5383581ab49999d Mon Sep 17 00:00:00 2001 From: David Boreham Date: Mon, 1 May 2023 15:51:20 -0600 Subject: [PATCH] Fix http proxy config --- tls-proxy/nginx-config-template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tls-proxy/nginx-config-template b/tls-proxy/nginx-config-template index 1979f03..6365d36 100644 --- a/tls-proxy/nginx-config-template +++ b/tls-proxy/nginx-config-template @@ -16,7 +16,7 @@ http { } location / { - proxy_pass http://webservice:8000/; + proxy_pass ${LACONIC_ORIGIN_SERVICE_URL}; } }