Force https on stackedit.io

This commit is contained in:
benweet 2013-10-07 02:17:55 +01:00
parent f1f21df46d
commit 866732bdae

View File

@ -1,7 +1,8 @@
var express = require('express'); var express = require('express');
var app = express(); var app = express();
// Force HTTPS on stackedit.io
app.all('*', function(req, res, next) { app.all('*', function(req, res, next) {
console.log(req.headers);
if (req.headers.host == 'stackedit.io' && req.headers['x-forwarded-proto'] != 'https') { if (req.headers.host == 'stackedit.io' && req.headers['x-forwarded-proto'] != 'https') {
res.redirect('https://stackedit.io' + req.url); res.redirect('https://stackedit.io' + req.url);
} }
@ -9,6 +10,12 @@ app.all('*', function(req, res, next) {
next(); next();
} }
}); });
// Use gzip compression
app.use(express.compress()); app.use(express.compress());
// Serve static resources
app.use(express.static(__dirname + '/public')); app.use(express.static(__dirname + '/public'));
// Listen on port 3000
app.listen(process.env.PORT || 3000); app.listen(process.env.PORT || 3000);