1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ghost_ynh.git synced 2024-09-03 19:16:02 +02:00

explicitely use ynh smtp to avoid notification

This commit is contained in:
Julien Malik 2014-03-24 01:30:17 +01:00
parent 9d01f8de5f
commit 0518aca527

View file

@ -7,14 +7,15 @@ var path = require('path'),
config = {
production: {
url: 'http://YNH_DOMAINYNH_LOCATION',
mail: {YNH_MAIL},
// database: {
// client: 'sqlite3',
// connection: {
// filename: path.join(__dirname, '/content/data/ghost.db')
// },
// debug: false
// },
mail: {
transport: 'SMTP',
options : {
host : 'localhost',
port : '25'
}
},
database: {
client: 'mysql',
connection: {
@ -25,6 +26,7 @@ config = {
charset : 'utf8'
}
},
server: {
// Host to be passed to node's `net.Server#listen()`
host: '0.0.0.0',