mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
6cdc447e83
Remove nginx build process and clean-up for production
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
if (typeof process.env.NEW_RELIC_LICENSE_KEY === 'string') {
|
|
require('newrelic');
|
|
}
|
|
|
|
var compression = require('compression');
|
|
var express = require('express');
|
|
var path = require('path');
|
|
var proxy = require('express-http-proxy');
|
|
var url = require('url');
|
|
|
|
var handler = require('./handler');
|
|
var log = require('./log');
|
|
var proxies = require('./proxies.json');
|
|
var routes = require('./routes.json');
|
|
|
|
// Server setup
|
|
var app = express();
|
|
app.disable('x-powered-by');
|
|
app.use(log());
|
|
app.use(compression());
|
|
app.use(express.static(path.resolve(__dirname, '../build'), {
|
|
lastModified: true,
|
|
maxAge: '1y'
|
|
}));
|
|
app.use(function (req, res, next) {
|
|
req._path = url.parse(req.url).path;
|
|
next();
|
|
});
|
|
|
|
// Bind routes
|
|
for (var routeId in routes) {
|
|
var route = routes[routeId];
|
|
app.get(route.pattern, handler(route));
|
|
}
|
|
|
|
// Bind proxies in development
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
var proxyHost = process.env.PROXY_HOST || 'https://staging.scratch.mit.edu';
|
|
|
|
app.use('/', proxy(proxyHost, {
|
|
filter: function (req) {
|
|
for (var i in proxies) {
|
|
if (req._path.indexOf(proxies[i]) === 0) return true;
|
|
}
|
|
return false;
|
|
},
|
|
forwardPath: function (req) {
|
|
return req._path;
|
|
}
|
|
}));
|
|
}
|
|
|
|
// Start listening
|
|
var port = process.env.PORT || 8333;
|
|
app.listen(port, function () {
|
|
process.stdout.write('Server listening on port ' + port + '\n');
|
|
if (proxyHost) {
|
|
process.stdout.write('Proxy host: ' + proxyHost + '\n');
|
|
}
|
|
});
|