Asp.Net Core 3 如何自定义端口/修改默认端口
2021-02-11 22:18
标签:pen 支持 html bho 读取 create 代码 web ipaddr 参考之前大神写的文章 :https://www.cnblogs.com/chenchuxin/p/6771427.html ,但是非core3的版本代码 1.添加 .UseUrls() 2.添加.ConfigureKestrel 方法配置,好处就是可以通过IConfiguration 对象 读取 appsettings 配置信息,而 UseUrls 不行,但是不支持 http 和https等协议(默认都是http)切换(这个不知道谁懂)。 Asp.Net Core 3 如何自定义端口/修改默认端口 标签:pen 支持 html bho 读取 create 代码 web ipaddr 原文地址:https://www.cnblogs.com/luzm/p/13036380.htmlpublic static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder
.UseUrls("http://*:5001", "https://*:5002")
.UseStartup
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder
.ConfigureKestrel((context, options) =>
{
var config = context.Configuration; //可以读取配置
options.Listen(new IPEndPoint(IPAddress.Parse("192.168.2.6"), 5001));
options.Listen(new IPEndPoint(IPAddress.Parse("192.168.2.6"), 5002));
})
.UseStartup
上一篇:什么是Web语义化
文章标题:Asp.Net Core 3 如何自定义端口/修改默认端口
文章链接:http://soscw.com/index.php/essay/54202.html