I have self-hosted WCF application that needs to listen on a URL on port 80. In order to do this, I need to add an entry to the HTTP.sys url list for a given user.
I can do this with netsh http add urlacl
or calling a Win32 API directly (http://stackoverflow.com/questions/6851161/net-or-win32-equivalent-of-netsh-http-add-urlacl-command). Neither of these are really desirable, as both require administrative rights and are specific to a particular user.
Is there an equivalent group policy setting to configure HTTP or some other way to centrally configure this?