Ghost doesn't load images
Problem
Ghost is fantastic, as soon as I met it I was a fan of it, even more because it's open source, but one of my first difficulties was loading images when using https.
Main cause
Investigating I discovered that this happens when using https but the images are loaded in http.
Solution
To resolve this issue, some adjustments had to be made. The first one is to change the container parameter url
from http
to https
:
docker run -d --name ghost --hostname ghost -v /iop/data/ghost:/var/lib/ghost/content -e url=https://lucaspolloni.xyz -p 3001:2368 ghost
It will be necessary to review the apache settings, first of all activate the module headers
:
a2enmod headers
Then add the request header X-Forwarded-Proto
in the apache vhost:
Restart apache service:
systemctl restart apache2
Now it's time to test: