Files
www.prothmann.com/ecosystem.config.js.sample
Christian Anetzberger c17c997fbf Ecosystem update
2022-02-15 13:14:07 +01:00

24 lines
648 B
Plaintext

module.exports = {
apps : [{
name: "www.prothmann.com",
script: "npm start",
cwd:"/srv/www/www.prothmann.com/",
autorestart: true,
max_memory_restart: '1G',
env_production: {
NODE_ENV: "production",
PORT: 8000,
MAIL_DOMAIN: "mail.prothmann.com",
MAIL_PORT: 587,
MAIL_USER:"***",
MAIL_PASS:"***",
MAIL_REJECTUNAUTHORIZED:false,
MAIL_IGNORETLS:false,
MAIL_REQUIRETLS:true,
MAIL_TO: "info@prothmann.com",
NEXT_PUBLIC_GOOGLE_MAPS_API_KEY: "***",
NEXT_PUBLIC_GOOGLE_ANALYTICS_API_KEY: "***"
}
}]
}