Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi there,
Indeed this seems to be the case. As far as I can see this has already been reported to Ghost via a GitHub issue:
https://github.com/TryGhost/Ghost/issues/12173
I’ve tested the fix suggested by Antucg and it seems to be working:
nano +48 /var/www/ghost/current/core/frontend/apps/private-blogging/lib/middleware.js
The code section should look like this:
return session({
maxAge: constants.ONE_MONTH_MS,
signed: false,
sameSite: "none",
})(req, res, next);
Comment out the sameSite: "none" bit so that the code snippet looks like this:
return session({
maxAge: constants.ONE_MONTH_MS,
signed: false,
// sameSite: "none",
})(req, res, next);
ghost-mgr user:su ghost-mgr
And restart ghost:
ghost restart
After that, the login will work as normal.
For a permanent fix, I would recommend keeping an eye on the GitHub issue. Regards, Bobby