I have installed Ghost in AWS with Bitnami. This was on a new Lightsail instance. The site was setup so that a simple index.html would be served from the main domain (kinship.io) and Ghost would appear from the /blog/ folder. That’s working, but the /blog/ which was working originally, is now giving a 404 and images are not loading.
Ghost-CLI version: 1.17.3
Ghost version: 4.10.1 (at /opt/bitnami/ghost)
confi.production.json:
{
“database” : {
“client” : “mysql” ,
“connection” : {
“host” : “127.0.0.1” ,
“port” : 3306 ,
“database” : “…” ,
“user” : “…” ,
“password” : “…”
}
},
“url” : "https : //www.kinship.io/blog/" ,
“server” : {
“port” : 2368 ,
“host” : “127.0.0.1”
},
“mail” : {
“transport” : “Direct” “transport” : “SMTP” ,
“host” : “…” ,
“from” : “'…” ,
“options” : {
“service” : “…” ,
“auth” : {
“user” : “…” ,
“pass” : “…”
}
}
},
“logging” : {
“transports” : [
“file” ,
“stdout”
]
},
“process” : “systemd” ,
“paths” : {
“contentPath” : “/opt/bitnami/ghost/content”
}
}