diff --git a/NzbDrone/IISController.cs b/NzbDrone/IISController.cs index fcc4018e8..1430e489b 100644 --- a/NzbDrone/IISController.cs +++ b/NzbDrone/IISController.cs @@ -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); }