Dynamic Configuration Refactoring
This commit is contained in:
parent
d3ae88f108
commit
a09dfa3ce1
452 changed files with 21023 additions and 9419 deletions
|
@ -83,7 +83,7 @@ If you encounter 'too many open files' errors, you can either increase this valu
|
|||
- `defaultEntryPoints`: Entrypoints to be used by frontends that do not specify any entrypoint.
|
||||
Each frontend can specify its own entrypoints.
|
||||
|
||||
- `keepTrailingSlash`: Tells Træfik whether it should keep the trailing slashes that might be present in the paths of incoming requests (true), or if it should redirect to the slashless version of the URL (default behavior: false)
|
||||
- `keepTrailingSlash`: Tells Traefik whether it should keep the trailing slashes that might be present in the paths of incoming requests (true), or if it should redirect to the slashless version of the URL (default behavior: false)
|
||||
|
||||
!!! note
|
||||
Beware that the value of `keepTrailingSlash` can have a significant impact on the way your frontend rules are interpreted.
|
||||
|
|
|
@ -486,7 +486,7 @@ Responses are compressed when:
|
|||
|
||||
## White Listing
|
||||
|
||||
Træfik supports whitelisting to accept or refuse requests based on the client IP.
|
||||
Traefik supports whitelisting to accept or refuse requests based on the client IP.
|
||||
|
||||
The following example enables IP white listing and accepts requests from client IPs defined in `sourceRange`.
|
||||
|
||||
|
@ -501,7 +501,7 @@ The following example enables IP white listing and accepts requests from client
|
|||
# Override the clientIPStrategy
|
||||
```
|
||||
|
||||
By default, Træfik uses the client IP (see [ClientIPStrategy](/configuration/entrypoints/#clientipstrategy)) for the whitelisting.
|
||||
By default, Traefik uses the client IP (see [ClientIPStrategy](/configuration/entrypoints/#clientipstrategy)) for the whitelisting.
|
||||
|
||||
If you want to use another IP than the one determined by `ClientIPStrategy` for the whitelisting, you can define the `IPStrategy` option:
|
||||
|
||||
|
@ -522,7 +522,7 @@ In the above example, if the value of the `X-Forwarded-For` header was `"10.0.0.
|
|||
|
||||
## ClientIPStrategy
|
||||
|
||||
The `clientIPStrategy` defines how you want Træfik to determine the client IP (used for whitelisting for example).
|
||||
The `clientIPStrategy` defines how you want Traefik to determine the client IP (used for whitelisting for example).
|
||||
|
||||
There are several option available:
|
||||
|
||||
|
@ -560,7 +560,7 @@ Examples:
|
|||
|
||||
### Excluded IPs
|
||||
|
||||
Træfik will scan the `X-Forwarded-For` header (from the right) and pick the first IP not in the `excludedIPs` list.
|
||||
Traefik will scan the `X-Forwarded-For` header (from the right) and pick the first IP not in the `excludedIPs` list.
|
||||
|
||||
```toml
|
||||
[entryPoints]
|
||||
|
@ -586,7 +586,7 @@ Examples:
|
|||
|
||||
### Default
|
||||
|
||||
If there are no `depth` or `excludedIPs`, then the client IP is the IP of the computer that initiated the connection with the Træfik server (the remote address).
|
||||
If there are no `depth` or `excludedIPs`, then the client IP is the IP of the computer that initiated the connection with the Traefik server (the remote address).
|
||||
|
||||
## ProxyProtocol
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue