如何配置可从其他主机访问的owin Web服务器。所有示例都配置为localhost。我可能不知道URL是什么。 (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();
}
}
}
答案 0 :(得分:16)
您可以使用'*'更改您的网址以收听所有适配器:
static string url = "http://*:9080";
这比localhost的限制性要小。