Last active
April 6, 2021 17:53
-
-
Save rririanto/364c7d633ae0e3b7918871677b35a4c4 to your computer and use it in GitHub Desktop.
Ghost Production Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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