Easily lock out Umbraco back office users

Want an easy way to lock out all back office users? Maybe you are performing an upgrade and want to make sure there’s no back office activity?Here’s a super handy script to do this:using System;using…

Read this article

OWIN Cookie Authentication with variable cookie paths

By default OWIN Cookie Authentication let’s you specify a single configurable cookie path that does not change for the lifetime of the application, for exampleapp.UseCookieAuthentication(new…

Read this article

Configuring ASP.Net Identity OAuth login providers for multi-tenancy

Say for example you have a CMS :) You want to give full control to the developer to manage how their front-end members with authenticate, which could of course include ASP.Net Identity OAuth login pro…

Read this article