Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions aspnetcore/fundamentals/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ var builder = WebApplication.CreateBuilder(args);
1. [appsettings.json](#appsettingsjson) using the [JSON configuration provider](#jcp).
1. A fallback to the host configuration described in the [next section](#host).

> [!IMPORTANT]
> While this article mentions `WebApplication.CreateBuilder(args)` many times, application code should call this method only once. For more information, see [this IIS Support blog post](https://techcommunity.microsoft.com/blog/iis-support-blog/asp-net-core-503-server-has-been-shutdown/3830338).

<a name="host"></a>

### Default host configuration sources
Expand Down
Loading