gpt4 book ai didi

.net - 删除 IIS express 上的 30MB 上传限制

转载 作者:行者123 更新时间:2023-12-04 06:42:43 24 4
gpt4 key购买 nike

有谁知道如何删除 30MB 上传限制,专门针对 IIS Express?

我试过编辑 applicationhost.config 和

 <security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1050000"></requestLimits>
</requestFiltering>
</security>

<location path="api/media/AsyncUpload">
<system.web>
<httpRuntime maxRequestLength="1050000" />
<!-- The size specified is in kilobytes. The default is 4096 KB (4 MB). 1gb = 1048576 -->
</system.web>
</location>

好像设置正确?

有任何想法吗?

最佳答案

您应该更改服务器配置文件。你要找的领域是

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

如果它不存在,添加它应该覆盖默认值。

关于.net - 删除 IIS express 上的 30MB 上传限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11961590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com