Created
April 29, 2014 13:07
-
-
Save whisher/11399768 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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