Report this

What is the reason for this report?

Ghost blog hosted on Ghost droplet has bug in Ghost admin general settings to "Make this site private" button

Posted on January 3, 2021
Andrew Defries

By Andrew Defries

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!

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.

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:

  • Edit the following file:
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);
  • Switch to the 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

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.