Add nginx HTTP Basic Auth for production

A custom entrypoint generates /etc/nginx/.htpasswd at container startup
from AUTH_USER and AUTH_PASSWORD env vars (via openssl). No credentials
are baked into the image. Pass AUTH_USER and AUTH_PASSWORD in docker-compose.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-27 05:49:29 +01:00
parent 2217489c15
commit 29db643407
5 changed files with 29 additions and 0 deletions

View File

@@ -3,3 +3,7 @@ FOOTBALL_API_KEY=your_api_key_here
# Only needed for local development (npm run dev)
VITE_FOOTBALL_API_KEY=your_api_key_here
# Basic auth credentials (production only)
AUTH_USER=henry
AUTH_PASSWORD=your_password_here