Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

windows server 2008 IIS 7.5 maximum file accept limit

I have deployed my application on IIS 7.5 on windows server 2008 operating system and i want to know what is the maximum file upload limit and how to increase that limit? Im working on asp.net mvc2

like image 812
Fraz Sundal Avatar asked Oct 11 '10 20:10

Fraz Sundal


1 Answers

This setting configures the upload file size limit:

<system.webServer>
    <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="10485760"/>
            </requestFiltering>
  </security>
</system.webServer>

Default size is ~30Mb.

like image 81
Merrimack Avatar answered Nov 24 '22 01:11

Merrimack