Hi,
I’m using Ghost self-hosted on Digital Ocean. I’ve set up mailgun and it was working for a day or so. I was able to sign in as a new user and the magic links all worked when trying to sign in.
Unfortunately, it all stopped working and I’m not sure why. Does anyone have experience with DO and mailgun and could help me with what I’m missing in the settings below?
When I restart ghost it seems to work for a few min and then I get Sorry, something went wrong. Please try again.
URL: https://www.saasgaps.com
Ghost V4
{
"url": "https://saasgaps.com",
"server": {
"port": 2368,
"host": "127.0.0.1"
},
"database": {
"client": "mysql",
"connection": {
"host": "localhost",
"user": "ghost",
"password": "REDACTED",
"database": "REDACTED"
}
},
"mail": {
"transport": "SMTP",
"options": {
"service": "Mailgun",
"host": "smtp.mailgun.org",
"auth": {
"user": "REDACTED",
"pass": "REDACTED"
}
}
},
"logging": {
"transports": [
"file",
"stdout"
]
},
"process": "systemd",
"paths": {
"contentPath": "/var/www/ghost/content"
}
}
Thank you