mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 15:28:02 +01:00
40 lines
832 B
Django/Jinja
40 lines
832 B
Django/Jinja
{
|
|
"url": "https://voyages.coccomagnard.fr/",
|
|
"server": {
|
|
"port": 2370,
|
|
"host": "0.0.0.0"
|
|
},
|
|
"database": {
|
|
"client": "mysql",
|
|
"connection": {
|
|
"host": "127.0.0.1",
|
|
"user": "ghost-310",
|
|
"password": "{{ ghost_db_password }}",
|
|
"database": "voyages_coccomagnard_fr_prod"
|
|
}
|
|
},
|
|
"mail": {
|
|
"transport": "SMTP",
|
|
"from": "voyages@mg.coccomagnard.fr",
|
|
"options": {
|
|
"service": "Mailgun",
|
|
"host": "smtp.eu.mailgun.org",
|
|
"port": 465,
|
|
"secure": true,
|
|
"auth": {
|
|
"user": "voyages@mg.coccomagnard.fr",
|
|
"pass": "{{ ghost_mail_password }}"
|
|
}
|
|
}
|
|
},
|
|
"logging": {
|
|
"transports": [
|
|
"file",
|
|
"stdout"
|
|
]
|
|
},
|
|
"process": "systemd",
|
|
"paths": {
|
|
"contentPath": "/mnt/data/voyages.coccomagnard.fr/content"
|
|
}
|
|
}
|