Skip to content

Instantly share code, notes, and snippets.

@whisher
Created April 29, 2014 13:07
Show Gist options
  • Save whisher/11399768 to your computer and use it in GitHub Desktop.
Save whisher/11399768 to your computer and use it in GitHub Desktop.
development.js e test.js
module.exports = {
ports: 8443
// ....
};
prodution.js
module.exports = {
ports: 443
// ....
};
server.js
/* set up https */
var credentials = {
key: fs.readFileSync(config.root+'/server/ssh/key.pem'),
cert: fs.readFileSync(config.root+'/server/ssh/key-cert.pem')
};
var httpServer = http.createServer(app);
var httpsServer = https.createServer(credentials, app);
httpServer.listen(config.port);
httpsServer.listen(config.ports);
// Start the app by listening on <port>
//app.listen(config.port);
console.log('Mean app http started on port ' + config.port + ' (' + process.env.NODE_ENV + ')');
console.log('Mean app https started on port ' + config.ports + ' (' + process.env.NODE_ENV + ')');
/* end set up https */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment