Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/3efe465114f301fc2494227b17b06faf40492dfe You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added multiple bindings for IISExpress. Allowing users to not run as admin (or add an urlacl as admin), but still access NzbDrone from localhost.

pull/3113/head
Mark McDowall 14 years ago
parent 78a9adbbcc
commit 3efe465114

@ -175,9 +175,15 @@ namespace NzbDrone
bindings.Add(
new XElement("binding",
new XAttribute("protocol", "http"),
new XAttribute("bindingInformation", String.Format("*:{0}:", Config.Port))
new XAttribute("bindingInformation", String.Format("*:{0}:localhost", Config.Port))
));
bindings.Add(
new XElement("binding",
new XAttribute("protocol", "http"),
new XAttribute("bindingInformation", String.Format("*:{0}:", Config.Port))
));
configXml.Save(configPath);
}

Loading…
Cancel
Save