Skip to content

Instantly share code, notes, and snippets.

@rririanto
Last active April 6, 2021 17:53
Show Gist options
  • Save rririanto/364c7d633ae0e3b7918871677b35a4c4 to your computer and use it in GitHub Desktop.
Save rririanto/364c7d633ae0e3b7918871677b35a4c4 to your computer and use it in GitHub Desktop.
Ghost Production Config
{
"url": "https://REPLACETHIS.com",
"server": {
"port": 2368,
"host": "127.0.0.1"
},
"database": {
"client": "mysql",
"connection": {
"host": "localhost",
"user": "bn_ghost",
"password": "REPLACETHIS",
"database": "bitnami_ghost"
}
},
"mail": {
"transport": "SMTP",
"from": "REPLACETHIS <[email protected]>",
"options": {
"service": "Mailgun",
"host": "smtp.mailgun.org",
"port": 465,
"secureConnection": true,
"auth": {
"user": "[email protected]",
"pass": "REPLACETHIS"
}
}
},
"logging": {
"transports": [
"file"
]
},
"storage": {
"active": "s3",
"s3": {
"accessKeyId": "REPLACETHIS",
"secretAccessKey": "REPLACETHIS",
"region": "REPLACETHIS",
"bucket": "REPLACETHIS",
"pathPrefix": "media",
"assetHost": "https://REPLACETHIS.REPLACETHIS.amazonaws.com",
"acl": "public-read",
"forcePathStyle": true
}
},
"process": "local",
"paths": {
"contentPath": "/opt/bitnami/apps/ghost/htdocs/content"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment