24 lines
648 B
Plaintext
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: "***"
|
|
}
|
|
}]
|
|
} |