找到发布目录下的appsettings.json文件
加入下面内容
"Kestrel":{
    "Endpoints": {
      "Https": {
        "Url": "https://*:8827"
      },
      "Http": {
        "Url": "http://*:8828"
      }
    }
  }不使用https的话去掉https,修改后效果

ASP.NET修改默认端口
阅读 16
2023-09-07
找到发布目录下的appsettings.json文件
加入下面内容
"Kestrel":{
    "Endpoints": {
      "Https": {
        "Url": "https://*:8827"
      },
      "Http": {
        "Url": "http://*:8828"
      }
    }
  }不使用https的话去掉https,修改后效果

相关推荐
精彩评论(0)