Node is failing to create a secure context for SSL communications.
Specifically, I\'m trying to get remote notifications to work on iOS. I use a module, called node-
Use these to generate pem.
openssl genrsa -out server-key.pem 1024 openssl req -new -key server-key.pem -out server-csr.pem openssl x509 -req -in server-csr.pem -signkey server-key.pem -out server-cert.pem