-
-
Notifications
You must be signed in to change notification settings - Fork 11k
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
SSL Support in Node #12
Comments
@jimthedev https support for node.js is planned for 0.4.0 release. I will have to do some research on self signed certs. Seems like a valid option. |
@mzabriskie Awesome! Currently, as a workaround I just swapped out http for https in the adapter and set this Not safe, but I am only working in dev so it suits my needs. |
@jimthedev I have added SSL support. I am not going to provide a flag for self signed certs. You can get around it by doing: process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; |
Cool. Thanks a bunch. What tag is this coming in on? 0.4.0? Currently looks like 0.3.1 is still the latest. Is this correct? |
@jimthedev current is 0.3.1, SSL support will be on 0.4.0. I have a couple open issues that I will address before the next release. Probably by the end of the week. |
@mzabriskie Great. Thanks. |
Hi,
Awesome job on axios. One question I have is, is https compatibility in Node something that you would consider for this package? Currently, it looks like there is just an http adapter. Would you consider https and if so, would you consider a flag to ignore self signed ssl certs?
Thanks much!
The text was updated successfully, but these errors were encountered: