NancyFx and Windows Authentication
I want to use NancyFx for an intranet web app. All the documentation and forums only mention Forms and Basic authentication. Anyone successfully use Nancy with Windows Authentication? There's also something called Nancy.Authentication.Stateless but I can't see what that does (looks like it's for use in Apis). I used this in an internal project recently - I don't really like it, and it ties you to asp.net hosting, but it did the job: namespace Blah.App.Security { using System; using System.Collections.Generic; using System.Linq; using System.Security.Principal; using System.Web; using Nancy;