Skip to content

Instantly share code, notes, and snippets.

@AnthonyGiretti
Created November 24, 2025 01:19
Show Gist options
  • Select an option

  • Save AnthonyGiretti/f12332c6b6ce4934b31321c50ad7fa6d to your computer and use it in GitHub Desktop.

Select an option

Save AnthonyGiretti/f12332c6b6ce4934b31321c50ad7fa6d to your computer and use it in GitHub Desktop.
ASP.NET Core 10: Easy support of local multi host: appsettings.Development.json
{
"Kestrel": {
"Endpoints": {
"Api": {
"Url": "https://api.localhost:7001"
},
"Admin": {
"Url": "https://admin.localhost:7002"
},
"Frontend": {
"Url": "https://frontend.localhost:7003"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment