Define port 80 as the default port to listen on - overrides new net8.0 default of 8080

* Define port 80 as the default port to listen on - overrides new net8.0 default of 8080
This commit is contained in:
Michael Green
2024-02-02 13:00:25 +11:00
committed by GitHub
parent 344d37c96a
commit 36938ed2f8

View File

@@ -0,0 +1,17 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Production": {
"Url": "http://*:80"
}
}
}
}