mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
18 lines
555 B
Bash
18 lines
555 B
Bash
|
#!/usr/bin/env sh
|
||
|
set -e
|
||
|
|
||
|
mv /var/lib/postgresql/data/pg_hba.conf /var/lib/postgresql/data/pg_hba.conf.bak
|
||
|
cat > /var/lib/postgresql/data/pg_hba.conf <<EOF
|
||
|
# TYPE DATABASE USER ADDRESS METHOD
|
||
|
|
||
|
# "local" is for Unix domain socket connections only
|
||
|
#local all all trust
|
||
|
|
||
|
# localhost connections
|
||
|
#host all all 127.0.0.1/32 trust
|
||
|
|
||
|
# external connections
|
||
|
hostssl all all all scram-sha-256
|
||
|
|
||
|
EOF
|