-
Notifications
You must be signed in to change notification settings - Fork 106
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
Added SSL support #545
Added SSL support #545
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thanks @stack-fault !
misc/config_template.in.hjson
Outdated
serverHostname : 'mrc.bottomlessabyss.net' | ||
serverPort : 5000 | ||
serverSslPort : 5001 | ||
useSsl : false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any reason not to use TLS by default?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I usually leave it disabled because in some case it requires an optional library not always installed.
If that is not the case here, please set it as default to true for sure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, updated. Should be fine since Node has TLS and that's all that's really happening in this case
Enable SSL/TLS by default as this is available with node
Thanks again @stack-fault ! |
Added SSL support between multiplexer and server
Updated templates with new configuration options