From 5f4c47620dbfb70c64bea24e8a5069ddae734d24 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 9 Feb 2018 17:13:50 +0200 Subject: Fix: haproxy conf should access via localhost --- roles/haproxy/templates/haproxy.cfg.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roles') diff --git a/roles/haproxy/templates/haproxy.cfg.j2 b/roles/haproxy/templates/haproxy.cfg.j2 index 7039b61..b5eab39 100644 --- a/roles/haproxy/templates/haproxy.cfg.j2 +++ b/roles/haproxy/templates/haproxy.cfg.j2 @@ -43,7 +43,7 @@ frontend http-in use_backend controller if any backend controller - server controller_1 {{ controller_domain }}:{{ controller_port }} + server controller_1 127.0.0.1:{{ controller_port }} backend blob_service - server blob_service_1 {{ blob_service_domain }}:{{ blob_service_port }} + server blob_service_1 127.0.0.1:{{ blob_service_port }} -- cgit v1.2.1