This is driving me insaine and is probly something simple:
- What’s your URL? https://blogs.mpaq.org
- What version of Ghost are you using? latest
And
- How was Ghost installed and configured? from ghost-cli
- What Node version, database, OS & browser are you using? Debian 12,MariaDB 10.11.14, FireFox
- What errors or information do you see in the console? When connecting to /ghost/
- What steps could someone else take to reproduce the issue you’re having?
My config file is:
{
“url”: “http://localhost:2368”,
“server”: {
“port”: 2368,
“host”: “localhost”
},
“database”: {
“client”: “mysql”,
“connection”: {
“host”: “xxx.xxx.xxx.xxx”,
“user”: “xxx”,
“password”: “xxx”,
“database”: “xxx”
}
},
“mail”: {
“from”: “‘MPAQ’ admin@mpaq.org”,
“transport”: “Direct”
},
“logging”: {
“transports”: [
“file”,
“stdout”
]
},
“process”: “systemd”,
“security”: {
“staffDeviceVerification”: true
},
“paths”: {
“contentPath”: “/var/www/ghost/content”
}
}
NGINX:
server {
listen xxx.xxx.xxx.xxx:xx;
server_name blogs.mpaq.org;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:2368;
}
client_max_body_size 50m;
}
Please tell me I’m just getting old and blind ![]()