Created
November 24, 2025 01:19
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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