Botanist
The Ghost Admin page has an option on the bottom of the general settings to “Make this site private”. It is not working in the ghost droplet.
When toggled to opt for a private site with the suggested password and saved in the admin page it does make the site private, but the password will not work and you cannot get past the authentication page. I tried to change the password and was sure to save my changes, but to no avail. This is a problem on two separate launched ghost droplets.
Please advise…
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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.