49 lines
576 B
Plaintext
49 lines
576 B
Plaintext
# Documentation and config folders
|
|
.gemini/
|
|
.git/
|
|
.github/
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Legacy files (not needed in container)
|
|
legacy/
|
|
|
|
# Logs and debug files
|
|
*.log
|
|
debug_logs*.txt
|
|
nginx_test*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Git files
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
!nginx.conf
|
|
|
|
# Docker files (avoid recursive includes)
|
|
docker-compose*.yml
|
|
Dockerfile*
|
|
|
|
# Temporary and backup files
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# SSL private keys (should be mounted as volume, not baked in)
|
|
ssl/*.key
|
|
|
|
# Disabled configs
|
|
*.disabled
|