We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cbc6b44 + ce39dd8 commit 1ab3231Copy full SHA for 1ab3231
1 file changed
src/NuGet.Server/Web.config
@@ -66,7 +66,8 @@
66
</system.Web>
67
-->
68
<system.web>
69
- <httpRuntime maxRequestLength="31457280" />
+ <!-- maxRequestLength is specified in Kb -->
70
+ <httpRuntime maxRequestLength="30720" />
71
<compilation debug="true" targetFramework="4.6" />
72
</system.web>
73
<system.serviceModel>
@@ -86,6 +87,7 @@
86
87
</handlers>
88
<security>
89
<requestFiltering>
90
+ <!-- maxAllowedContentLength is specified in Bytes -->
91
<requestLimits maxAllowedContentLength="31457280"/>
92
</requestFiltering>
93
</security>
0 commit comments