-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
--tls-v1.0 flag doesn't work on Node v12 #27384
Comments
Try with |
@lpinca Thanks, it worked! It was not clear from the changelog, as |
Yes you are right. https://nodejs.org/api/cli.html and |
So happy you guys allowed us to use this flag. Please don't forget those who do not have control over the sites we need to connect to. 🙏 🙏 🙏 🙏 🙏 |
@lpinca Could you also guide us on how to use |
@hyochan You can handle it like NODE_ENV=development node --tls-min-v1.0 -r ts-node/register src/main.ts |
For anyone facing issues enabling TLS 1.0 and 1.1 on newer Node versions (such as Node
|
Hi,
I'm trying to migrate to v12, but sadly there are some breaking changes for our use case.
We aggregate content from thousands of websites and some of them still do not support tls v1.2
I tried passing the
--tls-v1.0
flag like mentioned here tls: disable TLS v1.0 and v1.1 by default, like thisnode --tls-v1.0 run.js
, but it didn't help.I'm getting the following error message:
request to https://rss.adnkronos.com/RSS_PrimaPagina.xml failed, reason: write EPROTO 4562253248:error:1425F102:SSL routines:ssl_choose_client_version:unsupported protocol:../deps/openssl/openssl/ssl/statem/statem_lib.c:1922:
Any suggestions?
The text was updated successfully, but these errors were encountered: