17 lines
757 B
JavaScript
17 lines
757 B
JavaScript
module.exports = function(argv) {
|
|
var SocketCluster = require('socketcluster').SocketCluster;
|
|
|
|
return new SocketCluster({
|
|
host: argv.hostname || process.env.npm_package_remotedev_hostname || null,
|
|
port: Number(argv.port || process.env.npm_package_remotedev_port) || 8000,
|
|
workerController: __dirname + '/worker.js',
|
|
allowClientPublish: false,
|
|
protocol: argv.protocol || process.env.npm_package_remotedev_protocol || 'http',
|
|
protocolOptions: !(argv.protocol === 'https') ? null : {
|
|
key: argv.key || process.env.npm_package_remotedev_key || null,
|
|
cert: argv.cert || process.env.npm_package_remotedev_cert || null,
|
|
passphrase: argv.passphrase || process.env.npm_package_remotedev_passphrase || null
|
|
}
|
|
});
|
|
};
|