From 170098c54ed59cac0d8543eacf673dde9db71ff0 Mon Sep 17 00:00:00 2001 From: Serghey Rodin Date: Mon, 4 Nov 2013 23:42:52 +0200 Subject: [PATCH] PostgreSQL for Ubuntu and Debian --- install/debian/pg_hba.conf | 11 +++++++++++ install/ubuntu/pg_hba.conf | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 install/debian/pg_hba.conf create mode 100644 install/ubuntu/pg_hba.conf diff --git a/install/debian/pg_hba.conf b/install/debian/pg_hba.conf new file mode 100644 index 000000000..1ba43941b --- /dev/null +++ b/install/debian/pg_hba.conf @@ -0,0 +1,11 @@ +# "local" is for Unix domain socket connections only +local all all ident + +# IPv4 local connections: +host all all 127.0.0.1/32 md5 + +# IPv6 local connections: +host all all ::1/128 md5 + +# Others +host all all 0.0.0.0/0 md5 diff --git a/install/ubuntu/pg_hba.conf b/install/ubuntu/pg_hba.conf new file mode 100644 index 000000000..1ba43941b --- /dev/null +++ b/install/ubuntu/pg_hba.conf @@ -0,0 +1,11 @@ +# "local" is for Unix domain socket connections only +local all all ident + +# IPv4 local connections: +host all all 127.0.0.1/32 md5 + +# IPv6 local connections: +host all all ::1/128 md5 + +# Others +host all all 0.0.0.0/0 md5