20 lines
481 B
JavaScript
Executable File
20 lines
481 B
JavaScript
Executable File
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'nac-quantum-ws',
|
|
script: '/usr/bin/php',
|
|
args: '/opt/nac-quantum-browser/ws_server.php start',
|
|
interpreter: 'none',
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '128M',
|
|
env: {
|
|
NODE_ENV: 'production'
|
|
},
|
|
error_file: '/var/log/nac-quantum-ws-error.log',
|
|
out_file: '/var/log/nac-quantum-ws-out.log',
|
|
log_date_format: 'YYYY-MM-DD HH:mm:ss',
|
|
}
|
|
]
|
|
};
|