redbird
redbird copied to clipboard
ERR_SSL_No_Suitable_Algoritm
var proxy = require('redbird')({
port: 80,
xfwd: false,
letsencrypt: {
path: "certs",
port: 3000
},
ssl: {
port: 443
}
});
proxy.register("aharsoft.com", "http://localhost:3002", {
ssl: {
key: "/certs/aharsoft.com/private.key",
cert: "/certs/aharsoft.com/certificate.crt",
ca:"/certs/aharsoft.com/ca_bundle.crt"
}
});
Same issue...
- Ubuntu 18.04 server
- Tried Node v 8.9,10,11,12,13,14 nothing works :(
- OpenSSL 1.1.1 11 Sep 2018
- Tried "redbird": "^0.10.0" and "redbird": "^0.9.0"
My solution so far is to use Certbot then point the path to it.
Certbot
sudo certbot certonly --standalone --preferred-challenges http -d <example.com> sudo certbot certonly --standalone --preferred-challenges http -d <www.example.com>
index.js
const proxy = require('redbird')({ port: 80, xfwd: true, letsencrypt: { path: '/etc/letsencrypt/live', port: 9999 }, ssl: { port: 443, http2: true, } });
Also have this issue.