in a recent article, https://www.vultr.com/docs/how-to-deploy-fastapi-applications-with-gunicorn-and-nginx-on-ubuntu-20-04/
I read that fastapi "can work with WSGI if needed". I was wondering how?
I did a whole project with fastapi and tried to deploy it on cpanel shared hosting(my option for the moment) ,
in the wsgi.py file I used a2sg library
from main import app
from a2wsgi import ASGIMiddleware
application = ASGIMiddleware(app)
but I get 503 temporary busy, try again when I browse to the page
so, how can I deploy my app , I deployed django with ease but fasapi is an issue as it mainly uses ASGI. is it also possible?