mirror of
https://github.com/terraphim/gitea-infrastructure.git
synced 2026-07-15 22:50:34 +02:00
Complete infrastructure deployment including: - Docker Compose templates with 1Password integration (op://) - Caddy reverse proxy configuration for git.terraphim.cloud - Automated deployment script (deploy-to-bigbox.sh) - Comprehensive documentation and deployment article - Network isolation: Public (Gitea) + Tailscale (Prometheus/S3) - Security: No hardcoded secrets, all via 1Password Services deployed: - Gitea 1.22.6 (Git hosting) - PostgreSQL 15 (Database) - SeaweedFS (S3-compatible storage) - Prometheus (Monitoring) Excludes: - docker-compose.yml (contains resolved secrets) - s3_config.json (contains resolved secrets) - Data directories (gitea/, postgres/, seaweedfs/) Refs: Private deployment on bigbox with TerraphimPlatform vault
44 lines
582 B
Plaintext
44 lines
582 B
Plaintext
# Gitea Stack - Git Ignore
|
|
# This file excludes secrets and local data from version control
|
|
|
|
# Secrets - Never commit files with resolved credentials
|
|
# These are generated by op inject from .template files
|
|
docker-compose.yml
|
|
s3_config.json
|
|
.env
|
|
*.decrypted
|
|
*.secret
|
|
secrets/
|
|
|
|
# Data directories - Local state, not for git
|
|
/gitea/
|
|
/postgres/
|
|
/seaweedfs/
|
|
/seaweedfs_filter/
|
|
/prometheus/data/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|