From 4f9cd6706692eb6b1a000efb37cfe76e202e6d07 Mon Sep 17 00:00:00 2001 From: Kristian Lyngstol Date: Mon, 21 Jan 2019 19:23:52 +0100 Subject: Use ::1 instead of localhost to avoid multiple IPs Fixes #193 --- ansible/roles/web/files/varnish.vcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ansible') diff --git a/ansible/roles/web/files/varnish.vcl b/ansible/roles/web/files/varnish.vcl index b082971..2cdbbfe 100644 --- a/ansible/roles/web/files/varnish.vcl +++ b/ansible/roles/web/files/varnish.vcl @@ -3,12 +3,12 @@ vcl 4.0; backend default { - .host = "localhost"; + .host = "::1"; .port = "8080"; } backend influx { - .host = "localhost"; + .host = "::1"; .port = "8086"; } -- cgit v1.2.3