gpt4 book ai didi

c# - 如何配置 owin/Katana 以监听所有主机 ip 地址

转载 作者:太空狗 更新时间:2023-10-29 17:37:48 31 4
gpt4 key购买 nike

如何配置 owin 网络服务器以供其他主机访问。所有示例都为本地主机配置。我可能不知道网址是什么。 (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();
}
}
}

最佳答案

您可以使用“*”更改您的 url 以监听所有适配器:

static string url = "http://*:9080";

这将比 localhost 的限制更少。

关于c# - 如何配置 owin/Katana 以监听所有主机 ip 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26296851/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com