Configuring Azure Active Directory login with Umbraco Members

This post is about configuring Azure Active Directory with Umbraco Members (not Users), meaning this is for your front-end website, not the Umbraco back office. I did write up a post about Azure AD…

Read this article

Configuring Azure Active Directory login with Umbraco

It’s been a while since I first set this up and back then not all of these settings were in the new Azure portal, but now that they are getting this all configured is quite easy so here’s the basic…

Read this article

How I configure my Umbraco Cloud website to support Nuget packages

This post is about how I have my own website setup on Umbraco Cloud. This is based on my own personal opinions and is not meant to be an Umbraco Cloud ‘best practices’ guide. I’ve written this post since it might help others who have the same requirements as I do.…

Read this article

Getting Umbraco to work with Azure Easy Auth

There’s a nifty feature in your Azure App Service that allows you to very quickly add authentication and authorization to your Azure website. You’ll see most folks calling this “Easy Auth” and there’s…

Read this article

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

Easily setup your Umbraco installation with IoC / Dependency Injection

Umbraco supports allowing you to setup and configure any IoC container type that you want to use in your application. For a while now there’s been some sparse documentation on how to achieve this…

Read this article

Deploying to Azure from VSTS using publish profiles and msdeploy

In almost all of the examples online about how to deploy various services to Azure, they always list the super easy way to do it and that is to authenticate your current account to your Azure…

Read this article

How to lazily set the multi-term rewrite method on queries in Lucene

For wildcard queries in Lucene that you would like to have the results ordered by Score, there’s a trick that you need to do otherwise all of your scores will come back the same. The reason for this…

Read this article

Articulate 3.0.0 has finally arrived

It’s taken me forever to get this release out, mostly due to lack of time, but it’s finally here! Huge thanks to many community members who helped with this release, here’s some shout outs – THANKS!…

Read this article

Using IExceptionLogger with per-controller IControllerConfiguration in WebApi

There’s plenty of examples online about implementing a custom IExceptionLogger globally in WebApi and I’m sure they all work as expected but what if you don’t want to register it globally? In that…

Read this article