Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERR_SSL_No_Suitable_Algoritm #241

Open
RezaErfani67 opened this issue Mar 5, 2020 · 2 comments
Open

ERR_SSL_No_Suitable_Algoritm #241

RezaErfani67 opened this issue Mar 5, 2020 · 2 comments

Comments

@RezaErfani67
Copy link

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"
	}
});
@crossinghoods
Copy link

crossinghoods commented Jul 14, 2020

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,
}
});

@MKstudio-Tech
Copy link

Also have this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants