Skip to content

Commit a4a4c5a

Browse files
committed
update maxUrlLength and allow url double escaping for Functions and Proxies.
1 parent acc99e8 commit a4a4c5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WebJobs.Script.WebHost/Web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<clear />
3636
</namespaces>
3737
</pages>
38-
<httpRuntime targetFramework="4.5" maxRequestLength="102400" />
38+
<httpRuntime targetFramework="4.5" maxRequestLength="102400" maxUrlLength="4096" requestPathInvalidCharacters="" />
3939
</system.web>
4040
</location>
4141
<system.webServer>
@@ -47,7 +47,7 @@
4747
</handlers>
4848
<validation validateIntegratedModeConfiguration="false" />
4949
<security>
50-
<requestFiltering>
50+
<requestFiltering allowDoubleEscaping="true">
5151
<requestLimits maxAllowedContentLength="104857600" />
5252
</requestFiltering>
5353
</security>

0 commit comments

Comments
 (0)