gpt4 book ai didi

visual-studio - 在哪里配置本地 web api 的监听端口

转载 作者:行者123 更新时间:2023-12-04 12:40:37 33 4
gpt4 key购买 nike

我有一个在 VS 2019 中创建的带有 .net core 3.1 的 Wep Api 项目。为了测试,我将它部署到本地目录并从 doployed 文件夹启动了 exe。见 Deploy an app to a local folder using Visual Studio .那很好用,但 api 总是在端口 5000/50001 上监听

info: Microsoft.Hosting.Lifetime[0]
Now listening on: http://localhost:5000
info: Microsoft.Hosting.Lifetime[0]
Now listening on: https://localhost:5001

在哪里改端口?项目的 Properties/launchSettings.json 中的设置似乎没有影响(仅用于从 VS 调试)?
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:5101",

"sslPort": 5101
}
},
"$schema": "http://json.schemastore.org/launchsettings.json",
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"commandLineArgs": "Authority=http://localhost:5100",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Api": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:5101;http://localhost:5101"
}
}
}

最佳答案

to a local directory and started the exe from the dopleyed folder:


那是因为您正在启动 Kestrel 服务器,并且默认情况下它使用 5000/5001 .通常,改为将其称为 depoly ,我们使用术语 publish . Deploy意味着将其部署到某个服务器并与 IIS/nginx 交互。虽然 publish表示生成可执行文件。
如果要更改端口,可以更改 appsettings.{env}.json , 添加 urls如下:
{
"urls": "http://localhost:8800",
...
或者,如果您想覆盖 8800动态地,只需传递 --urls 的参数经过:
yourapp.exe --urls=https://localhost:8822

关于visual-studio - 在哪里配置本地 web api 的监听端口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59764881/

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