Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Fix default value for listen_addresses.
Browse files Browse the repository at this point in the history
  • Loading branch information
drmatthews committed Mar 1, 2023
1 parent 30eb61c commit c87201a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/postgresql.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

# - Connection Settings -

listen_addresses = {{ postgresql_connection.listen_addresses|default('localhost, postgresql_connection.host') }}
listen_addresses = {{ postgresql_connection.listen_addresses|default('localhost, ' + postgresql_connection.host) }}
#listen_addresses = '*'
# comma-separated list of addresses;
# defaults to 'localhost'; use '*' for all
Expand Down

0 comments on commit c87201a

Please sign in to comment.