From 125e41419a52d1202de810649f5e81e9f3f66bb0 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Tue, 12 Nov 2024 14:35:02 +0100 Subject: [PATCH] README.md: Use 127.0.0.1 instead of localhost This saves some DNS queries --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 352f7c64..acfda8ed 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ include 'nginx' $server_names = [$facts['networking']['fqdn'], $aliases] nginx::resource::vhost { $facts['networking']['fqdn']: - proxy => 'http://localhost:8500', + proxy => 'http://127.0.0.1:8500', server_name => $server_names, } ```