From 6ec700c632860ee7ad7412a06add3f6b77fc4485 Mon Sep 17 00:00:00 2001 From: markus101 Date: Sat, 23 Mar 2013 13:48:57 -0700 Subject: [PATCH] NancySelfHost under Non-Admin Accounts --- NzbDrone.Common/HostController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NzbDrone.Common/HostController.cs b/NzbDrone.Common/HostController.cs index 0aa18e9f1..5a50797d1 100644 --- a/NzbDrone.Common/HostController.cs +++ b/NzbDrone.Common/HostController.cs @@ -34,6 +34,8 @@ namespace NzbDrone.Common public void StartServer() { + //Todo: We need this to be able run when the user isn't an admin + //Todo: And when the URL hasn't been registered in URL ACL: netsh http add urlacl url=http://+:8989/ user=everyone _host = new NancyHost(new Uri(AppUrl), _bootstrapper); _host.Start(); }