updates helmet policies, makes new startup script

This commit is contained in:
terakilobyte
2015-06-18 17:08:21 -04:00
parent 9c14e5846d
commit 0173804e21
3 changed files with 55 additions and 25 deletions

10
pm2Start.js Normal file
View File

@ -0,0 +1,10 @@
var pm2 = require('pm2');
pm2.connect(function() {
pm2.start({
script: 'server/server.js',
exec_mode: 'fork',
max_memory_restart: '900M'
}, function(err, apps) {
pm2.disconnect();
});
});