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