salix/services/mailer/application/config/datasources.json

29 lines
596 B
JSON
Raw Normal View History

2017-11-27 14:08:18 +00:00
{
"app": {
"port": 3000,
2017-11-27 14:08:18 +00:00
"debug": false,
"defaultLanguage": "es",
"senderMail": "noreply@localhost",
"senderName": "MySender"
2017-11-27 14:08:18 +00:00
},
"mysql": {
"host": "localhost",
"port": 3306,
"database": "vn",
"user": "root",
"password": "root"
2017-11-27 14:08:18 +00:00
},
"smtp": {
"host": "localhost",
"port": 465,
"secure": true,
"auth": {
"user": "noreply",
"pass": ""
},
"tls": {
"rejectUnauthorized": false
},
"pool": true
}
}