方式一,修改配置文件 appsettings.json
找到文件 appsettings.json,
添加如下节点配置,在linux环境需要设置0.0.0.0才可以正常代表本机,然后被其他机器访问,此处设置端口8000,
bash
"Kestrel": {
"Endpoints": {
"MyHttpEndpoint": {
"Url": "http://0.0.0.0:8000"
}
}
}
或者
bash
,"Kestrel": {
"Endpoints": {
"MyHttpEndpoint": {
//0.0.0.0,或* 有效用于linux、windows
// "Url": "http://0.0.0.0:8000"
"Url": "http://*:8000"
}
}
}
方式二,代码添加端口:
csharp
var builder = WebApplication.CreateBuilder(args);
builder.WebHost.ConfigureKestrel((context, serverOptions) =>
{
serverOptions.Listen(IPAddress.Loopback, 5900);
serverOptions.Listen(IPAddress.Loopback, 5901, listenOptions =>
{
listenOptions.UseHttps("testCert.pfx", "testPassword");
});
});