├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── bin ├── create-root-ca.sh ├── create-server-certs.sh └── sign-csr.sh ├── certs ├── ca │ ├── my-root-ca.crt.pem │ └── my-root-ca.key.pem └── server │ ├── my-server.crt.pem │ └── my-server.key.pem ├── package.json ├── public └── index.html └── serve.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/app.js -------------------------------------------------------------------------------- /bin/create-root-ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/bin/create-root-ca.sh -------------------------------------------------------------------------------- /bin/create-server-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/bin/create-server-certs.sh -------------------------------------------------------------------------------- /bin/sign-csr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/bin/sign-csr.sh -------------------------------------------------------------------------------- /certs/ca/my-root-ca.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/certs/ca/my-root-ca.crt.pem -------------------------------------------------------------------------------- /certs/ca/my-root-ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/certs/ca/my-root-ca.key.pem -------------------------------------------------------------------------------- /certs/server/my-server.crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/certs/server/my-server.crt.pem -------------------------------------------------------------------------------- /certs/server/my-server.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/certs/server/my-server.key.pem -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/public/index.html -------------------------------------------------------------------------------- /serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolaj86/nodejs-ssl-example/HEAD/serve.js --------------------------------------------------------------------------------