我正在编写一个使用它的应用程序asp.net mvc
,现在运行在微软的kestrel
服务器上。它工作正常,我在启动时使用hosting.json
定义如下的文件将值传递给它;
{
"server": "Microsoft.AspNet.Server.Kestrel",
"server.urls": "http://localhost:5000;https://localhost:5001"
}
有没有办法给“服务器”起一个名字,这样它就不会总是报告localhost
或一直报告undefined
?