现在是用https登录,请问如何能同时可以用http和https两种方式访问?(域名端口最好一致)
var host = new WebHostBuilder()
.UseKestrel(option => {
option.UseHttps("server.pfx", "820722lb");
})
.UseUrls("https://*:8123")
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.UseApplicationInsights()
.Build();
目前是这样,如果在UseUrls中追加一个"http://*:8123"会提示已经有了
建议用反向代理,windows上用IIS,linux上用nginx
http和https还能用相同的端口?
你可以试试追加一个不一样的http端口试试