Browse Source
Add additional TLS certificate types and also explicitly add in the configured LND certificate to node's CA pool
master
Graham Krizek
4 years ago
No known key found for this signature in database
GPG Key ID: CE60579CC185BC56
1 changed files with
2 additions and
1 deletions
-
app.ts
|
|
@ -22,7 +22,8 @@ const port = process.env.PORT || config.node_http_port || 3001 |
|
|
|
console.log("=> env:", env) |
|
|
|
// console.log('=> config: ',config)
|
|
|
|
|
|
|
|
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA' |
|
|
|
process.env.GRPC_SSL_CIPHER_SUITES = 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384'; |
|
|
|
process.env.NODE_EXTRA_CA_CERTS = config.tls_location; |
|
|
|
|
|
|
|
// START SETUP!
|
|
|
|
async function start() { |
|
|
|