From 3a022aa5b7ac2e14c2026d22747bf2b34ac3dd23 Mon Sep 17 00:00:00 2001 From: Denys Havrysh Date: Tue, 20 Dec 2016 12:05:32 +0200 Subject: [PATCH] Correct `listen_addresses` option example for postgresql.conf file --- pillar.example | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pillar.example b/pillar.example index 98a4d10..ddc2be7 100644 --- a/pillar.example +++ b/pillar.example @@ -14,9 +14,10 @@ postgres: - postgresql-contrib - postgresql-plpython - # This section will append your configuration to postgresql.conf. + # Append the lines under this item to your postgresql.conf file. + # Pay attention to indent exactly with 4 spaces for all lines. postgresconf: | - listen_addresses = 'localhost,*' + listen_addresses = '*' # listen on all interfaces # Backup extension for postgresql.conf file, defaults to `.bak`. # Set to False to stop creation of backup on postgresql.conf changes.