Skip to content

Commit

Permalink
Update maximum request content size limits (#9471)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocav authored Aug 22, 2023
1 parent 655b8a6 commit 13788be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
-->
- Increase timeout for http proxying requests [#9433](https://github.com/Azure/azure-functions-host/pull/9433)
- Improve host.json sanitization
- Increased maximum HTTP request content size to 210000000 Bytes (~200MB)
4 changes: 2 additions & 2 deletions src/WebJobs.Script.WebHost/web.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</httpProtocol>
<security>
<requestFiltering allowDoubleEscaping="true" removeServerHeader="true">
<requestLimits maxQueryString="4096" maxUrl="8192" maxAllowedContentLength="104857600"/>
<requestLimits maxQueryString="4096" maxUrl="8192" maxAllowedContentLength="210000000"/>
</requestFiltering>
</security>
</system.webServer>
Expand All @@ -28,4 +28,4 @@
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
</configuration>

0 comments on commit 13788be

Please sign in to comment.