Rename ecosystem config files to harheimertc

This commit is contained in:
Torsten Schulz (local)
2025-10-21 08:56:50 +02:00
parent b25b704d9b
commit 065229106d
2 changed files with 0 additions and 0 deletions

20
harheimertc.config.cjs Normal file
View File

@@ -0,0 +1,20 @@
module.exports = {
apps: [{
name: 'harheimertc',
script: 'npm',
args: 'run start',
cwd: '/var/www/harheimertc',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '1G',
env: {
NODE_ENV: 'production',
PORT: 3100
},
error_file: '/var/log/pm2/harheimertc-error.log',
out_file: '/var/log/pm2/harheimertc-out.log',
log_file: '/var/log/pm2/harheimertc-combined.log',
time: true
}]
}