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:
parent
9d01f8de5f
commit
0518aca527
1 changed files with 10 additions and 8 deletions
|
@ -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',
|
||||||
|
|
Loading…
Add table
Reference in a new issue