configuration

created onJanuary 11, 2022

enable postgresql server to listen on all addresses

Out of the box, the postgresql server listens to localhost / 127.0.0.1 In order to make the server listen to all adresses on the machine, in postgresql.conf, replace

listen_addresses = 'localhost'

with

listen_addresses = '*'