Update README.md

Move SSL connection information to wiki
This commit is contained in:
Brian C 2016-07-10 16:29:42 -05:00 committed by GitHub
parent bd7fc59635
commit 1dc1dbc5b6

View File

@ -109,26 +109,6 @@ It's __highly recommended__ you read the documentation for [pg-pool](https://git
[Here is an up & running quickly example](https://github.com/brianc/node-postgres/wiki/Example)
### connect to self signed Postgresql server
Use following config to connect a Postgresql Server self signed:
```
var config = {
database : 'database-name', //env var: PGDATABASE
host : "host-or-ip", //env var: PGPORT
port : 5432, //env var: PGPORT
max : 100, // max number of clients in the pool
idleTimeoutMillis: 30000,
ssl : {
rejectUnauthorized : false,
ca : fs.readFileSync("/path/to/server-certificates/maybe/root.crt").toString(),
key : fs.readFileSync("/path/to/client-key/maybe/postgresql.key").toString(),
cert : fs.readFileSync("/path/to/client-certificates/maybe/postgresql.crt").toString(),
}
};
```
For more information about `config.ssl` check [TLS (SSL) of nodejs](https://nodejs.org/dist/latest-v4.x/docs/api/tls.html)