From 6a2bf1f30b23f7f66f789629e913c366096843db Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 6 Jun 2026 20:59:04 -0400 Subject: [PATCH] Fix nginx port: bind to 3000 instead of 80 for NPM compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NPM proxies beachpartyballoons.com → host:3000. Binding to 80 conflicts with NPM which owns that port. Co-Authored-By: Claude Sonnet 4.6 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 18fd182..d26a14c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: image: nginx:alpine container_name: bpb-nginx ports: - - "80:80" + - "3000:80" volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro - ./nginx/well-known:/etc/nginx/well-known:ro