Initial
This commit is contained in:
28
ecosystem.config.js.sample
Normal file
28
ecosystem.config.js.sample
Normal file
@@ -0,0 +1,28 @@
|
||||
module.exports = {
|
||||
apps : [{
|
||||
name: "www.canetzberger.design",
|
||||
script: "yarn start",
|
||||
env: {
|
||||
NODE_ENV: "development",
|
||||
MAIL_DOMAIN: "mail.example.com",
|
||||
MAIL_PORT: 587,
|
||||
MAIL_USER:"mailuser",
|
||||
MAIL_PASS:"mailpass",
|
||||
MAIL_REJECTUNAUTHORIZED:false,
|
||||
MAIL_IGNORETLS:false,
|
||||
MAIL_REQUIRETLS:true,
|
||||
MAIL_TO: "info@example.com"
|
||||
},
|
||||
env_production: {
|
||||
NODE_ENV: "production",
|
||||
MAIL_DOMAIN: "mail.example.com",
|
||||
MAIL_PORT: 587,
|
||||
MAIL_USER:"mailuser",
|
||||
MAIL_PASS:"mailpass",
|
||||
MAIL_REJECTUNAUTHORIZED:false,
|
||||
MAIL_IGNORETLS:false,
|
||||
MAIL_REQUIRETLS:true,
|
||||
MAIL_TO: "info@example.com"
|
||||
}
|
||||
}]
|
||||
}
|
||||
Reference in New Issue
Block a user