From 86db5f93457ed0e6e014fa58a3bfe80a67b194b0 Mon Sep 17 00:00:00 2001 From: Arseney300 Date: Fri, 20 Feb 2026 08:25:03 +0700 Subject: Fix nginx port mappings broken by comment indentation The commented-out 8000 port had extra indentation that made YAML parse it as part of the 80:80 value, causing no ports to be published. Co-Authored-By: Claude Opus 4.6 --- nginx/docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/docker-compose.yaml b/nginx/docker-compose.yaml index 7917bed..421c3c0 100644 --- a/nginx/docker-compose.yaml +++ b/nginx/docker-compose.yaml @@ -5,7 +5,7 @@ services: image: nginx:latest ports: - 80:80 - #- 8000:8000 + #- 8000:8000 - 443:443 restart: always volumes: -- cgit v1.2.3