Files
fastapi/docs/en/docs/reference/middleware.md
Nils Lindemann ebc8ac7295 📝 Tweak docs and translations links, typos, format (#11389)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2024-04-18 14:53:19 -05:00

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