Skip to content

Commit

Permalink
changed for self signed ssl support (#1072)
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxiangyang authored and brianc committed Jul 10, 2016
1 parent 522d622 commit 33a1c35
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,28 @@ 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)

## [More Documentation](https://github.com/brianc/node-postgres/wiki)

Expand Down
2 changes: 1 addition & 1 deletion lib/connection-parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var ConnectionParameters = function(config) {
this.host = val('host', config);
this.password = val('password', config);
this.binary = val('binary', config);
this.ssl = typeof config.ssl === 'boolean' ? config.ssl : useSsl();
this.ssl = typeof config.ssl === 'undefined' ? useSsl() : config.ssl;
this.client_encoding = val("client_encoding", config);
//a domain socket begins with '/'
this.isDomainSocket = (!(this.host||'').indexOf('/'));
Expand Down

0 comments on commit 33a1c35

Please sign in to comment.