From d02862a5f8f9ba83718a3c6b061bd6398d344679 Mon Sep 17 00:00:00 2001 From: "Chris.Watts90@outlook.com" Date: Thu, 2 Feb 2017 17:00:45 +0000 Subject: [PATCH] change endpoint to start on all ip addresses. --- .../WindowsDataCenter/WindowsDataCenter/Service1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/Service1.cs b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/Service1.cs index 4148de5..06c7003 100644 --- a/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/Service1.cs +++ b/DataCenter_Windows/WindowsDataCenter/WindowsDataCenter/Service1.cs @@ -45,7 +45,7 @@ namespace WindowsDataCenter Name = "OWIN SELF HOST MAIN THREAD" }; //TODO: use app.config for endpoint config. - _webApp = WebApp.Start("http://localhost:8800"); + _webApp = WebApp.Start("http://*:8800"); } protected override void OnStop()