From 2243f5be2443a02a04f26752dd1e06d3459e9230 Mon Sep 17 00:00:00 2001 From: Nikolaus Krismer <nikolaus.krismer@uibk.ac.at> Date: Wed, 6 Aug 2014 22:42:52 +0200 Subject: [PATCH] fixing major problem when importing from localhost (on host startup) --- etc/vagrant/conf/pg_hba.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/vagrant/conf/pg_hba.conf b/etc/vagrant/conf/pg_hba.conf index 5b7b572a..1e825bd3 100644 --- a/etc/vagrant/conf/pg_hba.conf +++ b/etc/vagrant/conf/pg_hba.conf @@ -1,4 +1,6 @@ # TYPE DATABASE USER ADDRESS METHOD local all all peer +host all all 127.0.0.1/32 md5 +host all all ::1/128 md5 host all all 0.0.0.0/0 md5 -- GitLab