Force https on stackedit.io
This commit is contained in:
parent
0783a86af4
commit
f1f21df46d
@ -1,5 +1,14 @@
|
||||
var express = require('express');
|
||||
var app = express();
|
||||
app.all('*', function(req, res, next) {
|
||||
console.log(req.headers);
|
||||
if (req.headers.host == 'stackedit.io' && req.headers['x-forwarded-proto'] != 'https') {
|
||||
res.redirect('https://stackedit.io' + req.url);
|
||||
}
|
||||
else {
|
||||
next();
|
||||
}
|
||||
});
|
||||
app.use(express.compress());
|
||||
app.use(express.static(__dirname + '/public'));
|
||||
app.listen(process.env.PORT || 3000);
|
Loading…
Reference in New Issue
Block a user