From aed77a78fba542180e9153ac015eb1a0d1c29b7c Mon Sep 17 00:00:00 2001 From: Donal McBreen Date: Tue, 17 Jun 2025 15:34:27 +0100 Subject: [PATCH] Formatting fixes for docs --- lib/kamal/configuration/docs/builder.yml | 1 + lib/kamal/configuration/docs/proxy.yml | 15 ++++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/kamal/configuration/docs/builder.yml b/lib/kamal/configuration/docs/builder.yml index 22c310f0..190fd240 100644 --- a/lib/kamal/configuration/docs/builder.yml +++ b/lib/kamal/configuration/docs/builder.yml @@ -8,6 +8,7 @@ # # Options go under the builder key in the root configuration. builder: + # Arch # # The architectures to build for — you can set an array or just a single value. diff --git a/lib/kamal/configuration/docs/proxy.yml b/lib/kamal/configuration/docs/proxy.yml index 21584e88..90eaeaba 100644 --- a/lib/kamal/configuration/docs/proxy.yml +++ b/lib/kamal/configuration/docs/proxy.yml @@ -11,6 +11,7 @@ # run on the same proxy. # proxy: + # Hosts # # The hosts that will be used to serve the app. The proxy will only route requests @@ -48,9 +49,9 @@ proxy: # Custom SSL certificate # - # In some cases, using Let's Encrypt for automatic certificate management is not an - # option, or you may already have SSL certificates issued by a different - # Certificate Authority (CA). Kamal supports loading custom SSL certificates + # In some cases, using Let's Encrypt for automatic certificate management is not an + # option, or you may already have SSL certificates issued by a different + # Certificate Authority (CA). Kamal supports loading custom SSL certificates # directly from secrets. # # Examples: @@ -84,12 +85,12 @@ proxy: # Path-based routing # - # For applications that split their traffic to different services based on the request path, + # For applications that split their traffic to different services based on the request path, # you can use path-based routing to mount services under different path prefixes. path_prefix: '/api' - # By default, the path prefix will be stripped from the request before it is forwarded upstream. - # So in the example above, a request to /api/users/123 will be forwarded to web-1 as /users/123. - # To instead forward the request with the original path (including the prefix), + # By default, the path prefix will be stripped from the request before it is forwarded upstream. + # So in the example above, a request to /api/users/123 will be forwarded to web-1 as /users/123. + # To instead forward the request with the original path (including the prefix), # specify --strip-path-prefix=false strip_path_prefix: false