mirror of
https://github.com/wgh136/nysoure.git
synced 2025-12-15 07:31:14 +00:00
38 lines
916 B
Plaintext
38 lines
916 B
Plaintext
# Database Configuration
|
|
DB_HOST=db
|
|
DB_PORT=3306
|
|
DB_USER=nysoure
|
|
DB_PASSWORD=your_secure_password_here
|
|
DB_NAME=nysoure
|
|
MYSQL_ROOT_PASSWORD=your_secure_root_password_here
|
|
MYSQL_DATABASE=nysoure
|
|
MYSQL_USER=nysoure
|
|
MYSQL_PASSWORD=your_secure_password_here
|
|
|
|
# Redis Configuration
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
|
|
# Application Configuration
|
|
BANNED_REDIRECT_DOMAINS=example.com,example.org
|
|
ALLOWED_URL_REGEXPS=
|
|
|
|
# Backup Configuration
|
|
# Object storage configuration (S3-compatible)
|
|
S3_ENDPOINT=https://s3.amazonaws.com
|
|
S3_BUCKET=nysoure-backups
|
|
S3_ACCESS_KEY=your_access_key_here
|
|
S3_SECRET_KEY=your_secret_key_here
|
|
S3_REGION=us-east-1
|
|
|
|
# Backup schedule (cron format) - default: daily at 2 AM
|
|
BACKUP_SCHEDULE=0 2 * * *
|
|
|
|
# Retention policy (days)
|
|
BACKUP_RETENTION_DAYS=30
|
|
|
|
# Download Configuration
|
|
DOWNLOAD_SECRET_KEY=your_download_secret_key_here
|
|
|
|
# Access Key for Development API
|
|
DEV_ACCESS_KEY=your_dev_access_key_here |