Remove 30MB upload limit on IIS express

前端 未结 1 1920
我寻月下人不归
我寻月下人不归 2021-01-17 18:54

Does anyone know how to remove the 30MB upload limit, specifically for IIS Express?

I\'ve tried editing the applicationhost.config and

 

        
相关标签:
1条回答
  • 2021-01-17 19:36

    You should change the server config file. The field you are looking for is

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

    If it doesn't exist, adding it should override the defaults.

    0 讨论(0)
提交回复
热议问题