Open

Description
My team has a postgres instance in google cloud, and ran into trouble connecting to the database after upgrading to pg 8.0.3 from 7.x
After reading the changelog, we were able to connect by adding rejectUnauthorized : false in the ssl settings
ssl: {
**rejectUnauthorized: false,**
ca: fs.readFileSync('/path/to/server-certificates/root.crt').toString(),
key: fs.readFileSync('/path/to/client-key/postgresql.key').toString(),
cert: fs.readFileSync('/path/to/client-certificates/postgresql.crt').toString(),
},
This raised some red flags with us, and one of the developers found the setting for host in the ssl object, which works as expected
ssl: {
host: "google-cloud-project:postgres-instance",
ca: fs.readFileSync('/path/to/server-certificates/root.crt').toString(),
key: fs.readFileSync('/path/to/client-key/postgresql.key').toString(),
cert: fs.readFileSync('/path/to/client-certificates/postgresql.crt').toString(),
},
It would be helpful to add this to the documentation page.
Metadata
Metadata
Assignees
Labels
No labels