Files
VoxCPM/.dockerignore
Daniel Cox 4af38a9ddc fix: replace FORWARDED_ALLOW_IPS with nginx map, add .dockerignore
HTTPS proxy handling moved entirely to nginx (map $http_x_forwarded_proto).

- .dockerignore to exclude models/data/lora/output from build context
- nginx: manifest.json returns proper JSON for PWA, favicon returns 204
- docker-compose: drop version key, remove FORWARDED_ALLOW_IPS env var
- README: update HTTPS troubleshooting (nginx map handles it now)
2026-08-12 11:57:37 +09:30

25 lines
293 B
Plaintext

# Model weights (mounted at runtime via volumes)
models/
data/
lora/
output/
# Git history
.git/
# Python cache
__pycache__/
*.pyc
*.pyo
*.egg-info/
.venv/
# Docker config (not needed inside image)
docker/docker-compose.yml
docker/nginx.conf
docker/README.md
# IDE / OS
.DS_Store
.vscode/