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": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Warning" "Default": "Warning"
}
},
"AllowedHosts": "*",
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://0.0.0.0:5000"
}
}
} }
}, }
"AllowedHosts": "*"
}