From 062e95391b84efff7f08a0dffc888c1e05516517 Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Wed, 29 May 2019 17:18:28 -0700 Subject: [PATCH] Doc stack size limit (#12590) --- .../host-and-deploy/aspnet-core-module.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/aspnetcore/host-and-deploy/aspnet-core-module.md b/aspnetcore/host-and-deploy/aspnet-core-module.md index 3be98932bd..c10fa42e65 100644 --- a/aspnetcore/host-and-deploy/aspnet-core-module.md +++ b/aspnetcore/host-and-deploy/aspnet-core-module.md @@ -478,6 +478,26 @@ The handler settings can also be provided via environment variables: See [Configuration with web.config](#configuration-with-webconfig) for an example of the `aspNetCore` element in the *web.config* file. +::: moniker range=">= aspnetcore-3.0" + +## Modify the stack size + +Configure the managed stack size using the `stackSize` setting in bytes. The default size is `1048576` bytes (1 MB). + +```xml + + + + + +``` + +::: moniker-end + ## Proxy configuration uses HTTP protocol and a pairing token ::: moniker range=">= aspnetcore-2.2"