ecosystem.config.js
module.exports = {
apps: [
{
name: 'starsofdesign',
script: 'server.js',
cwd: __dirname,
env: {
NODE_ENV: 'production',
PORT: 9928,
PUBLIC_URL: 'https://starsofdesign.com',
},
max_memory_restart: '300M',
time: true,
},
],
};