Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions aspnetcore/fundamentals/middleware/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,13 @@ var app = builder.Build();

app.Map("/level1", level1App => {
level1App.Map("/level2a", level2AApp => {
app.Run(async context =>
level2AApp.Run(async context =>
{
await context.Response.WriteAsync("Processing '/level1/level2a'");
});
});
level1App.Map("/level2b", level2BApp => {
app.Run(async context =>
level2BApp.Run(async context =>
{
await context.Response.WriteAsync("Processing '/level1/level2b'");
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ In the preceding *Dockerfile*, the `*.csproj` files are copied and restored as d
* [Configure ASP.NET Core to work with proxy servers and load balancers](xref:host-and-deploy/proxy-load-balancer)
* [Working with Visual Studio Docker Tools](xref:host-and-deploy/docker/visual-studio-tools-for-docker)
* [Debugging with Visual Studio Code](https://code.visualstudio.com/docs/nodejs/debugging-recipes#_debug-nodejs-in-docker-containers)
* [GC using Docker and small containers](xref:performance/memory#sc)
* [GC using Docker and small containers](xref:performance/memory#gc-using-docker-and-small-containers)
* [System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached](xref:host-and-deploy/docker/index#d128)
* [Updates to Docker images](https://andrewlock.net/exploring-the-dotnet-8-preview-updates-to-docker-images-in-dotnet-8/)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ In the preceding *Dockerfile*, the `*.csproj` files are copied and restored as d
* [Configure ASP.NET Core to work with proxy servers and load balancers](xref:host-and-deploy/proxy-load-balancer)
* [Working with Visual Studio Docker Tools](xref:host-and-deploy/docker/visual-studio-tools-for-docker)
* [Debugging with Visual Studio Code](https://code.visualstudio.com/docs/nodejs/debugging-recipes#_debug-nodejs-in-docker-containers)
* [GC using Docker and small containers](xref:performance/memory#sc)
* [GC using Docker and small containers](xref:performance/memory#gc-using-docker-and-small-containers)
* [System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached](xref:host-and-deploy/docker/index#d128)

## Next steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ In the preceding *Dockerfile*, the `*.csproj` files are copied and restored as d
* [Configure ASP.NET Core to work with proxy servers and load balancers](xref:host-and-deploy/proxy-load-balancer)
* [Working with Visual Studio Docker Tools](xref:host-and-deploy/docker/visual-studio-tools-for-docker)
* [Debugging with Visual Studio Code](https://code.visualstudio.com/docs/nodejs/debugging-recipes#_debug-nodejs-in-docker-containers)
* [GC using Docker and small containers](xref:performance/memory#sc)
* [GC using Docker and small containers](xref:performance/memory#gc-using-docker-and-small-containers)
* [System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached](xref:host-and-deploy/docker/index#d128)
* [Updates to Docker images](https://andrewlock.net/exploring-the-dotnet-8-preview-updates-to-docker-images-in-dotnet-8/)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ In the preceding *Dockerfile*, the `*.csproj` files are copied and restored as d
* [Configure ASP.NET Core to work with proxy servers and load balancers](xref:host-and-deploy/proxy-load-balancer)
* [Working with Visual Studio Docker Tools](xref:host-and-deploy/docker/visual-studio-tools-for-docker)
* [Debugging with Visual Studio Code](https://code.visualstudio.com/docs/nodejs/debugging-recipes#_debug-nodejs-in-docker-containers)
* [GC using Docker and small containers](xref:performance/memory#sc)
* [GC using Docker and small containers](xref:performance/memory#gc-using-docker-and-small-containers)
* [System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached](xref:host-and-deploy/docker/index#d128)
* [Updates to Docker images](https://andrewlock.net/exploring-the-dotnet-8-preview-updates-to-docker-images-in-dotnet-8/)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ In the preceding *Dockerfile*, the `*.csproj` files are copied and restored as d
* [Configure ASP.NET Core to work with proxy servers and load balancers](xref:host-and-deploy/proxy-load-balancer)
* [Working with Visual Studio Docker Tools](xref:host-and-deploy/docker/visual-studio-tools-for-docker)
* [Debugging with Visual Studio Code](https://code.visualstudio.com/docs/nodejs/debugging-recipes#_debug-nodejs-in-docker-containers)
* [GC using Docker and small containers](xref:performance/memory#sc)
* [GC using Docker and small containers](xref:performance/memory#gc-using-docker-and-small-containers)
* [System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached](xref:host-and-deploy/docker/index#d128)
* [Updates to Docker images](https://andrewlock.net/exploring-the-dotnet-8-preview-updates-to-docker-images-in-dotnet-8/)

Expand Down
2 changes: 1 addition & 1 deletion aspnetcore/host-and-deploy/docker/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Find out how to use the Visual Studio Container Tools extension to deploy an ASP
[Configure ASP.NET Core to work with proxy servers and load balancers](xref:host-and-deploy/proxy-load-balancer)
Additional configuration might be required for apps hosted behind proxy servers and load balancers. Passing requests through a proxy often obscures information about the original request, such as the scheme and client IP. It might be necessary to forward some information about the request manually to the app.

[GC using Docker and small containers](xref:performance/memory#sc)
[GC using Docker and small containers](xref:performance/memory#gc-using-docker-and-small-containers)
Discusses GC selection with small containers.

[!INCLUDE[](~/includes/128.md)]
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,6 @@ There may be an expectation for the production or release image to be smaller in
* [Deploy a .NET app in a Windows container to Azure Service Fabric](/azure/service-fabric/service-fabric-host-app-in-a-container)
* [Troubleshoot Visual Studio development with Docker](/azure/vs-azure-tools-docker-troubleshooting-docker-errors)
* [Visual Studio Container Tools GitHub repository](https://github.com/Microsoft/DockerTools)
* [GC using Docker and small containers](xref:performance/memory#sc)
* [GC using Docker and small containers](xref:performance/memory#gc-using-docker-and-small-containers)
* [System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached](xref:host-and-deploy/docker/index#d128)
* [Updates to Docker images](https://andrewlock.net/exploring-the-dotnet-8-preview-updates-to-docker-images-in-dotnet-8/)
Loading