cd28a4fbcc
do not extend them as it disallows to pick from config
99 lines
2.9 KiB
JavaScript
Executable File
99 lines
2.9 KiB
JavaScript
Executable File
var path = require('path');
|
|
var fs = require('fs');
|
|
|
|
var ENVIRONMENT;
|
|
if ( process.argv[2] ) {
|
|
ENVIRONMENT = process.argv[2];
|
|
} else if ( process.env.NODE_ENV ) {
|
|
ENVIRONMENT = process.env.NODE_ENV;
|
|
} else {
|
|
ENVIRONMENT = 'development';
|
|
}
|
|
|
|
var availableEnvironments = {
|
|
production: true,
|
|
staging: true,
|
|
development: true
|
|
};
|
|
|
|
// sanity check
|
|
if (!availableEnvironments[ENVIRONMENT]){
|
|
console.error('node app.js [environment]');
|
|
console.error('environments: %s', Object.keys(availableEnvironments).join(', '));
|
|
process.exit(1);
|
|
}
|
|
|
|
process.env.NODE_ENV = ENVIRONMENT;
|
|
|
|
// set environment specific variables
|
|
global.environment = require('./config/environments/' + ENVIRONMENT);
|
|
|
|
global.log4js = require('log4js');
|
|
var log4js_config = {
|
|
appenders: [],
|
|
replaceConsole: true
|
|
};
|
|
|
|
if (global.environment.uv_threadpool_size) {
|
|
process.env.UV_THREADPOOL_SIZE = global.environment.uv_threadpool_size;
|
|
}
|
|
|
|
if ( global.environment.log_filename ) {
|
|
var logdir = path.dirname(global.environment.log_filename);
|
|
// See cwd inlog4js.configure call below
|
|
logdir = path.resolve(__dirname, logdir);
|
|
if ( ! fs.existsSync(logdir) ) {
|
|
console.error("Log filename directory does not exist: " + logdir);
|
|
process.exit(1);
|
|
}
|
|
console.log("Logs will be written to " + global.environment.log_filename);
|
|
log4js_config.appenders.push(
|
|
{ type: "file", filename: global.environment.log_filename }
|
|
);
|
|
} else {
|
|
log4js_config.appenders.push(
|
|
{ type: "console", layout: { type:'basic' } }
|
|
);
|
|
}
|
|
|
|
global.log4js.configure(log4js_config, { cwd: __dirname });
|
|
global.logger = global.log4js.getLogger();
|
|
|
|
global.environment.api_hostname = require('os').hostname().split('.')[0];
|
|
|
|
// Include cartodb_windshaft only _after_ the "global" variable is set
|
|
// See https://github.com/Vizzuality/Windshaft-cartodb/issues/28
|
|
var cartodbWindshaft = require('./lib/cartodb/server');
|
|
var serverOptions = require('./lib/cartodb/server_options');
|
|
|
|
var server = cartodbWindshaft(serverOptions);
|
|
|
|
// Maximum number of connections for one process
|
|
// 128 is a good number if you have up to 1024 filedescriptors
|
|
// 4 is good if you have max 32 filedescriptors
|
|
// 1 is good if you have max 16 filedescriptors
|
|
server.maxConnections = global.environment.maxConnections || 128;
|
|
|
|
server.listen(serverOptions.bind.port, serverOptions.bind.host);
|
|
|
|
var version = require("./package").version;
|
|
|
|
server.on('listening', function() {
|
|
console.log(
|
|
"Windshaft tileserver %s started on %s:%s (%s)",
|
|
version, serverOptions.bind.host, serverOptions.bind.port, ENVIRONMENT
|
|
);
|
|
});
|
|
|
|
process.on('SIGHUP', function() {
|
|
global.log4js.clearAndShutdownAppenders(function() {
|
|
global.log4js.configure(log4js_config);
|
|
global.logger = global.log4js.getLogger();
|
|
console.log('Log files reloaded');
|
|
});
|
|
});
|
|
|
|
process.on('uncaughtException', function(err) {
|
|
global.logger.error('Uncaught exception: ' + err.stack);
|
|
});
|