mirror of
https://github.com/Dvorinka/Containr.git
synced 2026-06-03 20:12:58 +00:00
37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
# Domain Configuration
|
|
DOMAIN=yourdomain.com
|
|
ACME_EMAIL=admin@yourdomain.com
|
|
|
|
# Database Configuration
|
|
POSTGRES_DB=containr
|
|
POSTGRES_USER=containr_user
|
|
POSTGRES_PASSWORD=your_secure_postgres_password
|
|
|
|
# Redis Configuration
|
|
REDIS_PASSWORD=your_secure_redis_password
|
|
|
|
# Application Configuration
|
|
JWT_SECRET=your_very_secure_jwt_secret_key_here
|
|
CORS_ALLOWED_ORIGINS=https://yourdomain.com,https://www.yourdomain.com
|
|
|
|
# Traefik Authentication (Basic Auth for dashboard)
|
|
# Generate with: htpasswd -nb username password
|
|
TRAEFIK_AUTH=admin:$apr1$b8mh8c8v$KkR8hQZQZQZQZQZQZQZQZ/
|
|
|
|
# Optional: Cloudflare Tunnel (alternative to domain)
|
|
# Get token from: https://dash.cloudflare.com/argotunnel
|
|
CLOUDFLARED_TOKEN=your_cloudflare_tunnel_token_here
|
|
|
|
# Optional: Custom Docker Registry
|
|
# DOCKER_REGISTRY=your-registry.com
|
|
# DOCKER_USERNAME=your_username
|
|
# DOCKER_PASSWORD=your_password
|
|
|
|
# Optional: External Services
|
|
# SENTRY_DSN=https://your-sentry-dsn
|
|
# SLACK_WEBHOOK_URL=https://hooks.slack.com/services/your/webhook/url
|
|
|
|
# Development/Testing
|
|
# ENVIRONMENT=development
|
|
# DEBUG=true
|