gpt4 book ai didi

django - 是否可以在Azure应用服务-Django中修改http请求超时

转载 作者:行者123 更新时间:2023-12-03 04:27:02 25 4
gpt4 key购买 nike

目前该值约为 80 秒。我尝试通过多种方式修改超时:

  1. 修改 web.config 文件。

<system.web>
<httpRuntime targetFramework="4.5" executionTimeout="600"/>
</system.web>

  • 修改SCM_COMMAND_IDLE_TIMEOUT Azure 门户中应用程序设置中的值。

  • 我在这里得到的另一个解决方案: https://azure.microsoft.com/en-us/blog/new-configurable-idle-timeout-for-azure-load-balancer/ 。我认为这不适用于 Azure 应用服务。

  • 这些都不起作用。有没有办法修改超时值?

    最佳答案

    按照以下方式更改 Python 的配置。设置所需的 requestTimeout="00:04:00"

    <?xml version="1.0" encoding="UTF-8"?>  
    <configuration>
    <system.webServer>

    <handlers>
    <add name="httpPlatformHandler" path="*" verb="*"
    modules="httpPlatformHandler" resourceType="Unspecified"/>
    </handlers>

    <httpPlatform processPath="D:\home\Python27\python.exe" arguments="manage.py runserver %HTTP_PLATFORM_PORT%" requestTimeout="00:04:00" startupTimeLimit="120" startupRetryCount="3" stdoutLogEnabled="true">
    <environmentVariables>
    <environmentVariable name="PYTHONPATH" value="D:\home\site\wwwroot"/>
    </environmentVariables>
    </httpPlatform>

    </system.webServer>
    </configuration>

    阅读详情https://prmadi.com/django-app-with-httpplatformhandler-in-azure-app-services-windows/

    关于django - 是否可以在Azure应用服务-Django中修改http请求超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42017143/

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