簡體   English   中英

有沒有辦法在 cpanel 上部署 fastapi 應用程序?

[英]Is there a way to deploy a fastapi app on cpanel?

我在使用 Passenger 的 cpanel 上部署 FastAPI 應用程序時遇到問題

您可以使用a2wsgi運行您的 FastAPI 應用程序:

在您的passenger_wsgi.py中:

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

application = ASGIMiddleware(app)

應用 python package a2wsgi 來解決問題,但它不起作用。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM