Tell Kestrel to listen on all IPs

This commit is contained in:
Robert Marshall 2019-08-26 10:17:18 +01:00
parent 3632059288
commit 86dae0b8da

View file

@ -1,8 +1,15 @@
{
"Logging": {
"LogLevel": {
"Default": "Warning"
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*",
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:5000"
}
}
}
},
"AllowedHosts": "*"
}
}