Как запустить Windows IIS поверх сервера ASGI, такого как Hypercorn или uvicorn?

У меня есть апи на основе веб - приложения, написанные на Python с использованием FastApi, который использует Uvicorn или Hypercorn для серверов на базе deployment.These и являются ASGI. Есть ли способ запустить IIS поверх этого?

1 ответ

Вы можете запускать через IIS. Вот два возможных варианта (я использую Hypercorn):

  1. HTTPPlaformHandler

            <configuration>
        <system.webServer>
         <rewrite>
                <rules>
                    <rule name="HTTPS force" enabled="true" stopProcessing="true">
                        <match url="(.*)" />
                        <conditions>
                            <add input="{HTTPS}" pattern="^OFF$" />
                        </conditions>
                        <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
                    </rule>
                </rules>
            </rewrite>
            <handlers>
                <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
            </handlers>
            <httpPlatform requestTimeout="00:05:00" startupTimeLimit="120" startupRetryCount="3" stdoutLogEnabled="true" stdoutLogFile=".\logs\python-stdout" processPath="[PATH TO YOUR PYTHON EXE]" arguments="-m hypercorn app.main:app -b 127.0.0.1:%HTTP_PLATFORM_PORT% --keep-alive 5 --worker-class asyncio --workers 9">
                <environmentVariables>
                    <environmentVariable name="PORT" value="%HTTP_PLATFORM_PORT%" />
                </environmentVariables>
            </httpPlatform>
        </system.webServer>
    </configuration>
    
  2. AspNetCoreModuleV2 (если вы используете этот, вам понадобится config.py для правильной привязки URL-адреса и порта.)

             <system.webServer>
       <handlers>
         <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
       </handlers>
       <aspNetCore processPath="[PATH TO PYTHON EXE]" arguments="-m hypercorn app.main:app --config file:config.py" stdoutLogEnabled="true" stdoutLogFile=".\logs\stdout" requestTimeout="00:26:00" /></system.webServer>   </location><system.webServer></system.webServer> </configuration>
    
Другие вопросы по тегам