From a88f1a5f6e457e591cd5d362f38ceddeb190d222 Mon Sep 17 00:00:00 2001 From: Yi Huang <6022514+csujedihy@users.noreply.github.com> Date: Wed, 31 Dec 2025 15:15:29 -0800 Subject: [PATCH] Format YAML block for nginx docker configuration --- .../warp/configure-warp/managed-networks.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/content/docs/cloudflare-one/team-and-resources/devices/warp/configure-warp/managed-networks.mdx b/src/content/docs/cloudflare-one/team-and-resources/devices/warp/configure-warp/managed-networks.mdx index 3b286ed94fb18d..f730f5ffbee384 100644 --- a/src/content/docs/cloudflare-one/team-and-resources/devices/warp/configure-warp/managed-networks.mdx +++ b/src/content/docs/cloudflare-one/team-and-resources/devices/warp/configure-warp/managed-networks.mdx @@ -96,13 +96,13 @@ If you do not already have a TLS endpoint on your network, you can set one up as ```yml version: "3.3" services: - nginx: - image: nginx:latest - ports: - - 3333:443 - volumes: - - ./nginx.conf:/etc/nginx/nginx.conf:ro - - ./certs:/certs:ro + nginx: + image: nginx:latest + ports: + - 3333:443 + volumes: + - ./nginx.conf:/etc/nginx/nginx.conf:ro + - ./certs:/certs:ro ``` If needed, replace `./nginx.conf` and `./certs` with the locations of your nginx configuration file and certificate.