Added HTTPS to express

This commit is contained in:
Paolo Arena
2018-12-27 20:09:40 +01:00
parent 06cd4b8f0d
commit 46ccddc764
5 changed files with 38 additions and 9 deletions

View File

@@ -3,13 +3,14 @@ module.exports = {
{
name: "FreePlanetServerSide",
script: "./server/server.js",
ignore_watch : ["node_modules"],
watch: true,
env: {
"PORT": 3000,
"NODE_ENV": "development"
},
env_production: {
"PORT": 8080,
"PORT": 3000,
"NODE_ENV": "production",
}
}