![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/lavocat.quebec/private_html/ |
// PM2 Configuration for lavocat.quebec
// Install PM2: npm install -g pm2
// Start: pm2 start ecosystem.config.js
// Save: pm2 save
// Enable: pm2 startup
module.exports = {
apps: [{
name: 'lavocat-quebec',
script: 'npm',
args: 'run start:production',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '2G',
env: {
NODE_ENV: 'production',
PORT: 3000,
HTTPS_PORT: 3443,
HOSTNAME: '0.0.0.0'
},
env_production: {
NODE_ENV: 'production',
PORT: 3000,
HTTPS_PORT: 3443,
HOSTNAME: '0.0.0.0'
},
error_file: './logs/pm2-error.log',
out_file: './logs/pm2-out.log',
log_file: './logs/pm2-combined.log',
time: true,
merge_logs: true,
max_restarts: 10,
min_uptime: '10s',
restart_delay: 5000,
exec_mode: 'fork'
}]
};