From 78006689cbb45a3fde3943b1866020ca8ab7edd9 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Tue, 12 Nov 2024 14:05:56 +0100 Subject: [PATCH 1/2] README.md: Adjust links after repo migration --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b84cd948..352f7c64 100644 --- a/README.md +++ b/README.md @@ -525,10 +525,9 @@ a module that can do that. ## Development -Open an [issue](https://github.com/solarkennedy/puppet-consul/issues) or -[fork](https://github.com/solarkennedy/puppet-consul/fork) and open a -[Pull Request](https://github.com/solarkennedy/puppet-consul/pulls) - +Open an [issue](https://github.com/voxpupuli/puppet-consul/issues) or +[fork](https://github.com/voxpupuli/puppet-consul/fork) and open a +[Pull Request](https://github.com/voxpupuli/puppet-consul/pulls) ## Transfer Notice From 125e41419a52d1202de810649f5e81e9f3f66bb0 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Tue, 12 Nov 2024 14:35:02 +0100 Subject: [PATCH 2/2] 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, } ```