From aeb5cfa4b3c31d36c10ace8f11f619911db8b103 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 27 Jan 2015 21:31:49 -0700 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 9729fd9..8804181 100644 --- a/README.md +++ b/README.md @@ -312,3 +312,21 @@ server = http.createServer(function (req, res) { console.log("Listening on http://localhost:" + server.address().port); }); ``` + +Other SSL Resources +========= + +Zero-Config clone 'n' run (tm) Repos: + + +* [io.js / node.js HTTPS SSL Example](https://github.com/coolaj86/nodejs-ssl-example) +* [io.js / node.js HTTPS SSL Self-Signed Certificate Example](https://github.com/coolaj86/nodejs-self-signed-certificate-example) +* [io.js / node.js HTTPS SSL Trusted Peer Client Certificate Example](https://github.com/coolaj86/nodejs-ssl-trusted-peer-example) +* [SSL Root CAs](https://github.com/coolaj86/node-ssl-root-cas) + +Articles + +* [http://greengeckodesign.com/blog/2013/06/15/creating-an-ssl-certificate-for-node-dot-js/](Creating an SSL Certificate for node.js) +* [http://www.hacksparrow.com/express-js-https-server-client-example.html/comment-page-1](HTTPS Trusted Peer Example) +* [How to Create a CSR for HTTPS SSL (demo with name.com, node.js)](http://blog.coolaj86.com/articles/how-to-create-a-csr-for-https-tls-ssl-rsa-pems/) +* [coolaj86/Painless-Self-Signed-Certificates-in-node](https://github.com/coolaj86/node-ssl-root-cas/wiki/Painless-Self-Signed-Certificates-in-node.js)