IIS 7.5 + CGI + SSL - 如何增加上传限制?

IIS 7.5 + CGI + SSL - 如何增加上传限制?

我在使用 IIS 7 时遇到了一个非常烦人的问题。我按照如下步骤设置了我的 web.config:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <add name="Python" path="*.cgi" verb="*" modules="CgiModule" scriptProcessor="C:\Python27\python.exe -u &quot;%s&quot;" resourceType="Unspecified" requireAccess="Script" />
        </handlers>
        <security>
            <requestFiltering>
                <!-- maxAllowedContentLength is in bytes (B)  -->
                <requestLimits maxAllowedContentLength="1073741824" /> <!-- 1GB -->
            </requestFiltering>
        </security>
        <rewrite>
            <rules>
                <rule name="rewrite to hgwebdir" patternSyntax="Wildcard">
                    <match url="*" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="hgweb.cgi/{R:1}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
    <system.web>
        <!-- maxRequestLength is in kilobytes (KB)  -->
        <httpRuntime maxRequestLength="1048576" /> <!-- 1GB -->
    </system.web>
</configuration>

当我通过 HTTP 向 CGI 脚本 (它是通过 Python 的 Mercurial 的 hgweb) 发送 POST 消息时,一切都很正常 - 没有任何问题。

但是,当我通过 HTTPS (SSL) POST 到脚本时,我仍然被限制在默认的 30MB 上传限制。这对我来说毫无意义。发生了什么?!

答案1

这是 Python 2.7.3+ 的 SSL 模块中的不兼容性。

TortoiseHg 网站上记录了此错误,但它适用于通过 HTTPS 推送到 IIS 的所有平台。

https://bitbucket.org/tortoisehg/thg/issue/2593/cant-push-over-30mb-to-iis-via-https

我在 StackOverflow 上的相关帖子中有关于此内容的更多详细信息:

https://stackoverflow.com/a/16486104/97964

相关内容