Last active
October 19, 2019 14:32
-
-
Save n1lesh/199c10ba965b7ca42e09eb4c43da498a to your computer and use it in GitHub Desktop.
HTTPs Server with Node.js and Express
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var app = express(); | |
var fs = require('fs'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var key = fs.readFileSync('encryption/private.key'); | |
var cert = fs.readFileSync( 'encryption/primary.crt' ); | |
var ca = fs.readFileSync( 'encryption/intermediate.crt' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var options = { | |
key: key, | |
cert: cert, | |
ca: ca | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var https = require('https'); | |
https.createServer(options, app).listen(443); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http'); | |
http.createServer(app).listen(80); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.use(function(req, res, next) { | |
if (req.secure) { | |
next(); | |
} else { | |
res.redirect('https://' + req.headers.host + req.url); | |
} | |
}); |
"npm i express -g" installs to "global" scope and hence require('express') doesn't work
You need to install express like this:
npm i express
My implementation of this procedure has failed, though a parallel implementation with Nginx succeeded. With Node/Express I get a handshake failure that I have not yet managed to diagnose.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also did this ..
npm i express -g