This repository has been archived on 2020-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
stack/ghost/config.production.json

34 lines
597 B
JSON
Raw Normal View History

2020-04-02 13:20:50 +00:00
{
2020-05-01 12:23:02 +00:00
"url": "https://${GIT_DOMAIN}/",
2020-04-02 13:20:50 +00:00
"server": {
"port": 2368,
"host": "0.0.0.0"
},
"database": {
"client": "sqlite3",
"connection": {
"filename": "/var/lib/ghost/content/data/ghost.db"
}
},
"mail": {
"transport": "SMTP",
"options": {
2020-04-29 23:55:25 +00:00
"service": "${GHOST_MAIL_SERVICE}",
2020-04-02 13:20:50 +00:00
"auth": {
2020-04-29 23:55:25 +00:00
"user": "${GHOST_MAIL_USER}",
"pass": "${GHOST_MAIL_PASSWORD}"
2020-04-02 13:20:50 +00:00
}
}
},
"logging": {
"transports": [
"file",
"stdout"
]
},
"process": "systemd",
"paths": {
"contentPath": "/var/lib/ghost/content"
}
}