Add example for entrypoint on one ip address
This commit is contained in:
parent
a3df5b9a94
commit
25b74ce1f3
1 changed files with 25 additions and 1 deletions
|
@ -168,7 +168,7 @@ The format is:
|
||||||
|
|
||||||
If both TCP and UDP are wanted for the same port, two entryPoints definitions are needed, such as in the example below.
|
If both TCP and UDP are wanted for the same port, two entryPoints definitions are needed, such as in the example below.
|
||||||
|
|
||||||
??? example "Both TCP and UDP on port 3179"
|
??? example "Both TCP and UDP on Port 3179"
|
||||||
|
|
||||||
```toml tab="File (TOML)"
|
```toml tab="File (TOML)"
|
||||||
## Static configuration
|
## Static configuration
|
||||||
|
@ -194,6 +194,30 @@ If both TCP and UDP are wanted for the same port, two entryPoints definitions ar
|
||||||
--entryPoints.udpep.address=:3179/udp
|
--entryPoints.udpep.address=:3179/udp
|
||||||
```
|
```
|
||||||
|
|
||||||
|
??? example "Listen on Specific IP Addresses Only"
|
||||||
|
|
||||||
|
```toml tab="File (TOML)"
|
||||||
|
[entryPoints.specificIPv4]
|
||||||
|
address = "192.168.2.7:8888"
|
||||||
|
[entryPoints.specificIPv6]
|
||||||
|
address = "[2001:db8::1]:8888"
|
||||||
|
```
|
||||||
|
|
||||||
|
```yaml tab="File (yaml)"
|
||||||
|
entryPoints:
|
||||||
|
specificIPv4:
|
||||||
|
address: "192.168.2.7:8888"
|
||||||
|
specificIPv6:
|
||||||
|
address: "[2001:db8::1]:8888"
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash tab="CLI"
|
||||||
|
entrypoints.specificIPv4.address=192.168.2.7:8888
|
||||||
|
entrypoints.specificIPv6.address=[2001:db8::1]:8888
|
||||||
|
```
|
||||||
|
|
||||||
|
Full details for how to specify `address` can be found in [net.Listen](https://golang.org/pkg/net/#Listen) (and [net.Dial](https://golang.org/pkg/net/#Dial)) of the doc for go.
|
||||||
|
|
||||||
### Forwarded Headers
|
### Forwarded Headers
|
||||||
|
|
||||||
You can configure Traefik to trust the forwarded headers information (`X-Forwarded-*`).
|
You can configure Traefik to trust the forwarded headers information (`X-Forwarded-*`).
|
||||||
|
|
Loading…
Reference in a new issue