change endpoint to start on all ip addresses.

This commit is contained in:
Chris.Watts90@outlook.com 2017-02-02 17:00:45 +00:00
parent 974ffe4b13
commit d02862a5f8

View File

@ -45,7 +45,7 @@ namespace WindowsDataCenter
Name = "OWIN SELF HOST MAIN THREAD" Name = "OWIN SELF HOST MAIN THREAD"
}; };
//TODO: use app.config for endpoint config. //TODO: use app.config for endpoint config.
_webApp = WebApp.Start<StartOwin>("http://localhost:8800"); _webApp = WebApp.Start<StartOwin>("http://*:8800");
} }
protected override void OnStop() protected override void OnStop()