Stackedit/server.js
2013-10-07 21:29:26 +01:00

30 lines
677 B
JavaScript

// Nodetime
if(process.env.NODETIME_ACCOUNT_KEY) {
require('nodetime').profile({
accountKey: process.env.NODETIME_ACCOUNT_KEY,
appName: 'StackEdit'
});
}
var express = require('express');
var app = express();
// Force HTTPS on stackedit.io
app.all('*', function(req, res, next) {
if (req.headers.host == 'stackedit.io' && req.headers['x-forwarded-proto'] != 'https') {
res.redirect('https://stackedit.io' + req.url);
}
else {
next();
}
});
// Use gzip compression
app.use(express.compress());
// Serve static resources
app.use(express.static(__dirname + '/public'));
// Listen on port 3000
app.listen(process.env.PORT || 3000);