找到发布目录下的appsettings.json文件

加入下面内容

"Kestrel":{
    "Endpoints": {
      "Https": {
        "Url": "https://*:8827"
      },
      "Http": {
        "Url": "http://*:8828"
      }
    }
  }

不使用https的话去掉https,修改后效果

ASP.NET修改默认端口_数据库