34 lines
597 B
JSON
34 lines
597 B
JSON
{
|
|
"url": "https://${GIT_DOMAIN}/",
|
|
"server": {
|
|
"port": 2368,
|
|
"host": "0.0.0.0"
|
|
},
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"connection": {
|
|
"filename": "/var/lib/ghost/content/data/ghost.db"
|
|
}
|
|
},
|
|
"mail": {
|
|
"transport": "SMTP",
|
|
"options": {
|
|
"service": "${GHOST_MAIL_SERVICE}",
|
|
"auth": {
|
|
"user": "${GHOST_MAIL_USER}",
|
|
"pass": "${GHOST_MAIL_PASSWORD}"
|
|
}
|
|
}
|
|
},
|
|
"logging": {
|
|
"transports": [
|
|
"file",
|
|
"stdout"
|
|
]
|
|
},
|
|
"process": "systemd",
|
|
"paths": {
|
|
"contentPath": "/var/lib/ghost/content"
|
|
}
|
|
}
|