Fix paragraph in entrypoints and Docker docs
This commit is contained in:
parent
15f50553e9
commit
4cb5825d11
2 changed files with 44 additions and 44 deletions
|
@ -296,9 +296,9 @@ See the sections [Docker API Access](#docker-api-access) and [Docker Swarm API A
|
||||||
|
|
||||||
??? example "Using SSH"
|
??? example "Using SSH"
|
||||||
|
|
||||||
Using Docker 18.09+ you can connect Traefik to daemon using SSH
|
Using Docker 18.09+ you can connect Traefik to daemon using SSH.
|
||||||
We specify the SSH host and user in Traefik's configuration file.
|
We specify the SSH host and user in Traefik's configuration file.
|
||||||
Note that is server requires public keys for authentication you must have those accessible for user who runs Traefik.
|
Note that if the server requires public keys for authentication, you must have them accessible for the user running Traefik.
|
||||||
|
|
||||||
```yaml tab="File (YAML)"
|
```yaml tab="File (YAML)"
|
||||||
providers:
|
providers:
|
||||||
|
|
|
@ -595,29 +595,29 @@ _Optional, Default=0_
|
||||||
|
|
||||||
The maximum number of requests Traefik can handle before sending a `Connection: Close` header to the client (for HTTP2, Traefik sends a GOAWAY). Zero means no limit.
|
The maximum number of requests Traefik can handle before sending a `Connection: Close` header to the client (for HTTP2, Traefik sends a GOAWAY). Zero means no limit.
|
||||||
|
|
||||||
```yaml tab="File (YAML)"
|
```yaml tab="File (YAML)"
|
||||||
## Static configuration
|
## Static configuration
|
||||||
entryPoints:
|
entryPoints:
|
||||||
name:
|
name:
|
||||||
address: ":8888"
|
address: ":8888"
|
||||||
transport:
|
transport:
|
||||||
keepAliveMaxRequests: 42
|
keepAliveMaxRequests: 42
|
||||||
```
|
```
|
||||||
|
|
||||||
```toml tab="File (TOML)"
|
```toml tab="File (TOML)"
|
||||||
## Static configuration
|
## Static configuration
|
||||||
[entryPoints]
|
[entryPoints]
|
||||||
[entryPoints.name]
|
[entryPoints.name]
|
||||||
address = ":8888"
|
address = ":8888"
|
||||||
[entryPoints.name.transport]
|
[entryPoints.name.transport]
|
||||||
keepAliveMaxRequests = 42
|
keepAliveMaxRequests = 42
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash tab="CLI"
|
```bash tab="CLI"
|
||||||
## Static configuration
|
## Static configuration
|
||||||
--entryPoints.name.address=:8888
|
--entryPoints.name.address=:8888
|
||||||
--entryPoints.name.transport.keepAliveMaxRequests=42
|
--entryPoints.name.transport.keepAliveMaxRequests=42
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `keepAliveMaxTime`
|
#### `keepAliveMaxTime`
|
||||||
|
|
||||||
|
@ -625,29 +625,29 @@ _Optional, Default=0s_
|
||||||
|
|
||||||
The maximum duration Traefik can handle requests before sending a `Connection: Close` header to the client (for HTTP2, Traefik sends a GOAWAY). Zero means no limit.
|
The maximum duration Traefik can handle requests before sending a `Connection: Close` header to the client (for HTTP2, Traefik sends a GOAWAY). Zero means no limit.
|
||||||
|
|
||||||
```yaml tab="File (YAML)"
|
```yaml tab="File (YAML)"
|
||||||
## Static configuration
|
## Static configuration
|
||||||
entryPoints:
|
entryPoints:
|
||||||
name:
|
name:
|
||||||
address: ":8888"
|
address: ":8888"
|
||||||
transport:
|
transport:
|
||||||
keepAliveMaxTime: 42s
|
keepAliveMaxTime: 42s
|
||||||
```
|
```
|
||||||
|
|
||||||
```toml tab="File (TOML)"
|
```toml tab="File (TOML)"
|
||||||
## Static configuration
|
## Static configuration
|
||||||
[entryPoints]
|
[entryPoints]
|
||||||
[entryPoints.name]
|
[entryPoints.name]
|
||||||
address = ":8888"
|
address = ":8888"
|
||||||
[entryPoints.name.transport]
|
[entryPoints.name.transport]
|
||||||
keepAliveMaxTime = 42s
|
keepAliveMaxTime = 42s
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash tab="CLI"
|
```bash tab="CLI"
|
||||||
## Static configuration
|
## Static configuration
|
||||||
--entryPoints.name.address=:8888
|
--entryPoints.name.address=:8888
|
||||||
--entryPoints.name.transport.keepAliveMaxTime=42s
|
--entryPoints.name.transport.keepAliveMaxTime=42s
|
||||||
```
|
```
|
||||||
|
|
||||||
### ProxyProtocol
|
### ProxyProtocol
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue