-
Notifications
You must be signed in to change notification settings - Fork 184
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
node socket.js doesn't work with SSL when key has a passphrase #276
Comments
You'd need to remove the password from the key https://futurestud.io/tutorials/how-to-remove-pem-password-from-ssl-certificate |
Of course it's not a solution. Since my company is under PCI DSS licence, we can't remove password from the key. Is there another workaround? |
Edit https://github.com/REBELinBLUE/deployer/blob/master/socket.js#L20 and add
https://nodejs.org/api/tls.html#tls_tls_createserver_options_secureconnectionlistener That seems rather ridiculous to me personally as that means the password is being stored on disk in plaintext 😧 I'll see about add a |
* master: (42 commits) Updated CHANGELOG Fixes #273 by not copying the shared folder/file from the release if it has already been copied Re-added postgres env Testing only 1 env Test Test Changed cat command for travis Fix code climate issues Changed build image Fixes #275 by checking that the --no-suggest option exists before attempting to use it Fixes #276 - Allows the passphrase for the private key to be set Fixed missing reason of rollback (#270) Updated dependencies Updated dependencies Update README.md Update README.md Update README.md Update README.md Last chance Setting a random JWT ...
Hi there!
I'm trying to run
node socket.js
as daemon with SSL certificate, but it's asking for certificate PEM password, so i can't start it likenode socket.js &
or usingsupervisord
.Could you advice how to achieve that?
The text was updated successfully, but these errors were encountered: