7
如何將owin web服務器配置爲可從其他主機訪問。所有示例都配置爲localhost。我可能不知道URL是什麼。 (IP地址/主機名)如何配置owin/katana以偵聽所有主機ip地址
代碼:
class Program
{
static string url = "http://localhost:9080";
static void Main(string[] args)
{
using (WebApp.Start<Startup>(url))
{
Console.WriteLine("Server running on {0}", url);
Console.ReadLine();
}
}
}