Skip to content

Commit 13788be

Browse files
authored
Update maximum request content size limits (#9471)
1 parent 655b8a6 commit 13788be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

release_notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
-->
66
- Increase timeout for http proxying requests [#9433](https://github.com/Azure/azure-functions-host/pull/9433)
77
- Improve host.json sanitization
8+
- Increased maximum HTTP request content size to 210000000 Bytes (~200MB)

src/WebJobs.Script.WebHost/web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</httpProtocol>
1717
<security>
1818
<requestFiltering allowDoubleEscaping="true" removeServerHeader="true">
19-
<requestLimits maxQueryString="4096" maxUrl="8192" maxAllowedContentLength="104857600"/>
19+
<requestLimits maxQueryString="4096" maxUrl="8192" maxAllowedContentLength="210000000"/>
2020
</requestFiltering>
2121
</security>
2222
</system.webServer>
@@ -28,4 +28,4 @@
2828
</dependentAssembly>
2929
</assemblyBinding>
3030
</runtime>
31-
</configuration>
31+
</configuration>

0 commit comments

Comments
 (0)