From 6eb0f66a5b912dfb43d9dff00c54bbebdddfb38c Mon Sep 17 00:00:00 2001 From: Trowbridge Date: Wed, 13 Feb 2019 21:24:18 -0500 Subject: [PATCH] ad hba file --- postgres/pg_hba.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 postgres/pg_hba.conf diff --git a/postgres/pg_hba.conf b/postgres/pg_hba.conf new file mode 100644 index 0000000..c1eb4c7 --- /dev/null +++ b/postgres/pg_hba.conf @@ -0,0 +1,20 @@ + # IPv4 local & remote connections: + host ubm report 127.0.0.1/32 trust + host ubm powerbi 127.0.0.1/32 trust + host ubm api 127.0.0.1/32 md5 + host dev api 127.0.0.1/32 md5 + host all all 127.0.0.1/32 scram-sha-256 + host ubm report 0.0.0.0/0 trust + host ubm api 0.0.0.0/0 md5 + host dev api 0.0.0.0/0 md5 + host ubm ptrowbridge_md5 0.0.0.0/0 md5 + host all all 0.0.0.0/0 scram-sha-256 + # IPv6 local connections: + host ubm report fe80::/10 trust + host ubm powerbi fe80::/10 trust + host ubm api fe80::/10 md5 + host dev api fe80::/10 md5 + host ubm ptrowbridge_md5 fe80::/10 md5 + host all all fe80::/10 scram-sha-256 + host all all ::/10 scram-sha-256 + host all all ::/0 scram-sha-256 \ No newline at end of file