From 4cb5825d1181b09ce733c856e895ca0ed7671435 Mon Sep 17 00:00:00 2001 From: luigir-it <64033455+luigir-it@users.noreply.github.com> Date: Wed, 6 Mar 2024 14:12:04 +0100 Subject: [PATCH] Fix paragraph in entrypoints and Docker docs --- docs/content/providers/docker.md | 4 +- docs/content/routing/entrypoints.md | 84 ++++++++++++++--------------- 2 files changed, 44 insertions(+), 44 deletions(-) diff --git a/docs/content/providers/docker.md b/docs/content/providers/docker.md index d6a121965..d47e9d78f 100644 --- a/docs/content/providers/docker.md +++ b/docs/content/providers/docker.md @@ -296,9 +296,9 @@ See the sections [Docker API Access](#docker-api-access) and [Docker Swarm API A ??? 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. - 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)" providers: diff --git a/docs/content/routing/entrypoints.md b/docs/content/routing/entrypoints.md index afe2c05f9..70ce11cf5 100644 --- a/docs/content/routing/entrypoints.md +++ b/docs/content/routing/entrypoints.md @@ -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. - ```yaml tab="File (YAML)" - ## Static configuration - entryPoints: - name: - address: ":8888" - transport: - keepAliveMaxRequests: 42 - ``` +```yaml tab="File (YAML)" +## Static configuration +entryPoints: + name: + address: ":8888" + transport: + keepAliveMaxRequests: 42 +``` - ```toml tab="File (TOML)" - ## Static configuration - [entryPoints] - [entryPoints.name] - address = ":8888" - [entryPoints.name.transport] - keepAliveMaxRequests = 42 - ``` +```toml tab="File (TOML)" +## Static configuration +[entryPoints] + [entryPoints.name] + address = ":8888" + [entryPoints.name.transport] + keepAliveMaxRequests = 42 +``` - ```bash tab="CLI" - ## Static configuration - --entryPoints.name.address=:8888 - --entryPoints.name.transport.keepAliveMaxRequests=42 - ``` +```bash tab="CLI" +## Static configuration +--entryPoints.name.address=:8888 +--entryPoints.name.transport.keepAliveMaxRequests=42 +``` #### `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. - ```yaml tab="File (YAML)" - ## Static configuration - entryPoints: - name: - address: ":8888" - transport: - keepAliveMaxTime: 42s - ``` +```yaml tab="File (YAML)" +## Static configuration +entryPoints: + name: + address: ":8888" + transport: + keepAliveMaxTime: 42s +``` - ```toml tab="File (TOML)" - ## Static configuration - [entryPoints] - [entryPoints.name] - address = ":8888" - [entryPoints.name.transport] - keepAliveMaxTime = 42s - ``` +```toml tab="File (TOML)" +## Static configuration +[entryPoints] + [entryPoints.name] + address = ":8888" + [entryPoints.name.transport] + keepAliveMaxTime = 42s +``` - ```bash tab="CLI" - ## Static configuration - --entryPoints.name.address=:8888 - --entryPoints.name.transport.keepAliveMaxTime=42s - ``` +```bash tab="CLI" +## Static configuration +--entryPoints.name.address=:8888 +--entryPoints.name.transport.keepAliveMaxTime=42s +``` ### ProxyProtocol