Skip to content

Commit

Permalink
fix default kestrel ports (#7627)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmolkova authored Feb 2, 2024
1 parent ae0bef4 commit 7a93b55
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,14 @@
"Microsoft.AspNetCore.HttpLogging.HttpLoggingMiddleware": "Information"
}
},
"Urls": "http://+:7777/;https://+:7778/"
"Kestrel": {
"Endpoints": {
"http": {
"Url": "http://+:7777"
},
"https": {
"Url": "https://+:7778"
}
}
}
}

0 comments on commit 7a93b55

Please sign in to comment.