24 lines
661 B
Text
24 lines
661 B
Text
# Forgejo Backup Configuration
|
|
# Copy this file to .env and update values
|
|
|
|
# Forgejo repository path
|
|
FORGEJO_REPO_PATH=/var/lib/forgejo/data/forgejo-repositories
|
|
|
|
# Temporary directory for creating archives
|
|
BACKUP_TEMP_DIR=/tmp/forgejo-backups
|
|
|
|
# PostgreSQL database for logging
|
|
BACKUP_DB_HOST=192.168.1.43
|
|
BACKUP_DB_PORT=5432
|
|
BACKUP_DB_NAME=ptadmin
|
|
BACKUP_DB_USER=plantempus_app
|
|
BACKUP_DB_PASSWORD=your_password_here
|
|
|
|
# Backup retention (days)
|
|
BACKUP_RETENTION_DAYS=30
|
|
|
|
# Azure Storage Configuration
|
|
AZURE_STORAGE_ACCOUNT=storageptadmin
|
|
AZURE_STORAGE_KEY=your_storage_key_here
|
|
AZURE_STORAGE_CONTAINER=backups
|
|
AZURE_STORAGE_PATH=forgejo
|