We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, i don't can setup proxy Node js 13.5 Try
Server
https:{ key: fs.readFileSync(path.join(__dirname, '../certificate/localhost/', 'key.pem')), cert: fs.readFileSync(path.join(__dirname, '../certificate/localhost/', 'site.crt')), }
server port 3002, if i open https://localhost:3002 = work
proxy use
let proxy443 = require('redbird')({ ssl: { // Optional SSL proxying. port: 443, // SSL port the proxy will listen to. key: '../certificate/localhost/key.pem', cert: '../certificate/localhost/cert.pem', http2: false, //Optional, setting to true enables http2/spdy support } }); proxy443.register( "localhost", "https://localhost:3002", { ssl: true } )
Always error ERR_SSL_VERSION_OR_CIPHER_MISMATCH not work, what is the problem?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, i don't can setup proxy
Node js 13.5
Try
Server
server port 3002, if i open https://localhost:3002 = work
proxy use
Always error ERR_SSL_VERSION_OR_CIPHER_MISMATCH
not work, what is the problem?
The text was updated successfully, but these errors were encountered: