有没有办法在 cpanel 上部署 fastapi 应用程序?

Hla*_*abs 8 python passenger cpanel fastapi

我在使用 Passenger 在 cpanel 上部署 FastAPI 应用程序时遇到问题

pyp*_*pae 9

您也许可以使用以下命令运行 FastAPI 应用程序a2wsgi

在你的passenger_wsgi.py

from a2wsgi import ASGIMiddleware
from main import app  # Import your FastAPI app.

application = ASGIMiddleware(app)
Run Code Online (Sandbox Code Playgroud)