db-api #10

Merged
merenber merged 22 commits from db-api into v1 2021-08-29 13:08:36 -04:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 90818e5b1f - Show all commits

View File

@ -51,7 +51,7 @@ GRANT ALL ON SCHEMA public TO postgres;
```
create a new `pg_hba.conf` to force password authentication and reject non local
```
cd /etc/postgres/<version>/<branch>/
cd /etc/postgresql/<version>/<branch>/
mv pg_hba.conf pg_hba.conf.old
```
```
@ -62,7 +62,7 @@ local sameuser all md5
host all all 0.0.0.0/0 reject
```
```
systemctl restart postgres
systemctl restart postgresql
```
#### Dependencies