mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-01 18:01:14 -05:00
991 B
991 B
Middleware
There are several middlewares available provided by Starlette directly.
Read more about them in the FastAPI docs for Middleware.
::: fastapi.middleware.cors.CORSMiddleware
It can be imported from fastapi:
from fastapi.middleware.cors import CORSMiddleware
::: fastapi.middleware.gzip.GZipMiddleware
It can be imported from fastapi:
from fastapi.middleware.gzip import GZipMiddleware
::: fastapi.middleware.httpsredirect.HTTPSRedirectMiddleware
It can be imported from fastapi:
from fastapi.middleware.httpsredirect import HTTPSRedirectMiddleware
::: fastapi.middleware.trustedhost.TrustedHostMiddleware
It can be imported from fastapi:
from fastapi.middleware.trustedhost import TrustedHostMiddleware
::: fastapi.middleware.wsgi.WSGIMiddleware
It can be imported from fastapi:
from fastapi.middleware.wsgi import WSGIMiddleware