Browse Source

Merge 2b862559f4 into 1d434dec47

pull/11441/merge
Soul Lee 4 days ago
committed by GitHub
parent
commit
51a0287a89
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      docs/en/docs/advanced/middleware.md
  2. 4
      docs_src/advanced_middleware/tutorial002.py

1
docs/en/docs/advanced/middleware.md

@ -68,6 +68,7 @@ Enforces that all incoming requests have a correctly set `Host` header, in order
The following arguments are supported: The following arguments are supported:
* `allowed_hosts` - A list of domain names that should be allowed as hostnames. Wildcard domains such as `*.example.com` are supported for matching subdomains. To allow any hostname either use `allowed_hosts=["*"]` or omit the middleware. * `allowed_hosts` - A list of domain names that should be allowed as hostnames. Wildcard domains such as `*.example.com` are supported for matching subdomains. To allow any hostname either use `allowed_hosts=["*"]` or omit the middleware.
* `www_redirect` - If set to True, requests to non-www versions of the allowed hosts will be redirected to their www counterparts. Defaults to `True`.
If an incoming request does not validate correctly then a `400` response will be sent. If an incoming request does not validate correctly then a `400` response will be sent.

4
docs_src/advanced_middleware/tutorial002.py

@ -4,7 +4,9 @@ from fastapi.middleware.trustedhost import TrustedHostMiddleware
app = FastAPI() app = FastAPI()
app.add_middleware( app.add_middleware(
TrustedHostMiddleware, allowed_hosts=["example.com", "*.example.com"] TrustedHostMiddleware,
allowed_hosts=["example.com", "*.example.com"],
www_redirect=True,
) )

Loading…
Cancel
Save