Fix nginx port: bind to 3000 instead of 80 for NPM compatibility

NPM proxies beachpartyballoons.com → host:3000. Binding to 80 conflicts
with NPM which owns that port.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chris 2026-06-06 20:59:04 -04:00
parent 0ec3766447
commit 6a2bf1f30b

View File

@ -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