Skip to content

Commit 1ab3231

Browse files
authored
Merge pull request #15 from NuGet/fixConfigValues
Fix maxRequestLength value
2 parents cbc6b44 + ce39dd8 commit 1ab3231

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/NuGet.Server/Web.config

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666
</system.Web>
6767
-->
6868
<system.web>
69-
<httpRuntime maxRequestLength="31457280" />
69+
<!-- maxRequestLength is specified in Kb -->
70+
<httpRuntime maxRequestLength="30720" />
7071
<compilation debug="true" targetFramework="4.6" />
7172
</system.web>
7273
<system.serviceModel>
@@ -86,6 +87,7 @@
8687
</handlers>
8788
<security>
8889
<requestFiltering>
90+
<!-- maxAllowedContentLength is specified in Bytes -->
8991
<requestLimits maxAllowedContentLength="31457280"/>
9092
</requestFiltering>
9193
</security>

0 commit comments

Comments
 (0)