diff options
author | Kristian Lyngstol <kly@kly.no> | 2019-01-29 21:48:54 +0100 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2019-01-29 21:48:54 +0100 |
commit | 68d31e02b28487cb5dd552c68efd10b4973f4169 (patch) | |
tree | 24eb002a4966b9ce47aef6c8bcc4c891cb1bb97d /ansible/roles/web/files/varnish.vcl | |
parent | 3b1ff674784205218c215212fd19d9cffd2ac708 (diff) | |
parent | 4306bc4f9c5ff40a5d56f700a2d753345188605f (diff) |
Merge branch 'master' of github.com:tech-server/gondul
Diffstat (limited to 'ansible/roles/web/files/varnish.vcl')
-rw-r--r-- | ansible/roles/web/files/varnish.vcl | 4 |
1 files changed, 2 insertions, 2 deletions
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"; } |