automated-setup/script/stacks/ghost/config.production.json

49 lines
1016 B
JSON
Raw Normal View History

{
"url": "https://{{ domain_ghost }}",
"server": {
"host": "0.0.0.0",
"port": 2368
},
"database": {
"client": "mysql",
"connection": {
"host": "{{ customer }}-ghost-db",
"user": "root",
"password": "{{ ghost_mysql_password }}",
"database": "ghost"
}
},
"mail": {
"transport": "SMTP",
"options": {
"service": "Mailgun",
"host": "{{ domain_poste }}",
"port": 465,
"secure": true,
"auth": {
"user": "ghost@{{ domain }}",
"pass": ""
}
}
},
"storage": {
"active": "s3",
"s3": {
"accessKeyId": "{{ ghost_s3_access_key }}",
"secretAccessKey": "{{ ghost_s3_secret_key }}",
"region": "eu-central-1",
"bucket": "ghost",
"endpoint": "https://{{ domain_s3 }}",
"forcePathStyle": true
}
},
"logging": {
"level": "info",
"transports": ["file", "stdout"]
},
"process": "systemd",
"paths": {
"contentPath": "/var/lib/ghost/content"
}
}