I am creating a Nancy Module that will eventually be hosted inside of a Windows Service. I am currently running it inside of a WPF test application. To start the Nancy hos
Look this: Self-Hosting-Nancy
The Host Configuration: UrlReservations, add under code:
UrlReservations
var configuration = new HostConfiguration { UrlReservations = new UrlReservations { CreateAutomatically = true } };
OK, you can create your host!~