檔案appsettings.json
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Kestrel": {
"EndPoints": {
"Http": {
//"Url": "http://localhost:7861/" //只有本機才可連線到localhost:7861或127.0.0.1:7861
//"Url": "http://127.0.0.1:7861/" //只有本機才可連線到localhost:7861或127.0.0.1:7861
"Url": "http://192.168.0.100:7861/" //綁定到192.168.0.100:7861,區域網路才可以訪問
}
}
},
"AllowedHosts": "*"
}
參考資料: