python.exe - FastCGI プロセスが設定されたアクティビティ タイムアウトを超えました

python.exe - FastCGI プロセスが設定されたアクティビティ タイムアウトを超えました

私はホストしようとしていますフラスコ (Python)アプリケーションウィンドウズサーバーですが、リクエストタイムアウトエラーが発生していたので、300秒 (5分)その後、アクティビティタイムアウトエラーが発生し、これについても同じことをしましたが、5分後に再びリクエストタイムアウトエラーが発生しました。正しい権限を与えましたパイソンそしてffmpegffmpeg私のアプリでは使用されています。

これが私のweb.configファイル

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <add name="MyApp Handler" 
      path="*" 
      verb="*" 
      modules="FastCgiModule" 
      scriptProcessor="c:\users\<username>\appdata\local\programs\python\python38\python.exe|c:\users\<username>\appdata\local\programs\python\python38\lib\site-packages\wfastcgi.py"
      resourceType="Unspecified" 
      requireAccess="Script" />
    </handlers>
  </system.webServer>

  <appSettings>
    <add key="PYTHONPATH" value="C:\inetpub\wwwroot\myapp" />
    <add key="WSGI_HANDLER" value="app.app" />
  </appSettings>
</configuration>

他に何か必要なことがあればコメント欄でお知らせください。 

関連情報