Require login to view CMS site on staging server but not production?

Hi @Eaglef90

Yes, this is possible with v17, no package needed.

Umbraco has front-end basic authentication built in and it validates against backoffice user credentials, which is exactly what you want. It’s an app setting:

"Umbraco": {
  "CMS": {
    "BasicAuth": {
      "Enabled": true,
      "RedirectToLoginPage": true
    }
  }
}

See: Basic Authentication | CMS | Umbraco Documentation

Justin