- Rename all user-facing strings: Target→Source, Remote→Destination across TUI, docs, web dashboard, bash scripts, config examples, and README - Add go-to-path search input to both FolderPicker and RemoteFolderPicker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
632 B
Plaintext
32 lines
632 B
Plaintext
# gniza — Destination Configuration
|
|
# Copy to remotes.d/<name>.conf
|
|
|
|
# Destination type: ssh, local, s3, gdrive
|
|
REMOTE_TYPE="ssh"
|
|
|
|
# SSH settings
|
|
REMOTE_HOST=""
|
|
REMOTE_PORT=22
|
|
REMOTE_USER="root"
|
|
REMOTE_AUTH_METHOD="key"
|
|
REMOTE_KEY=""
|
|
REMOTE_PASSWORD=""
|
|
REMOTE_BASE="/backups"
|
|
|
|
# Bandwidth limit override (KB/s, 0 = use global)
|
|
BWLIMIT=0
|
|
|
|
# Retention override
|
|
RETENTION_COUNT=30
|
|
|
|
# S3 settings (when REMOTE_TYPE=s3)
|
|
# S3_ACCESS_KEY_ID=""
|
|
# S3_SECRET_ACCESS_KEY=""
|
|
# S3_REGION="us-east-1"
|
|
# S3_ENDPOINT=""
|
|
# S3_BUCKET=""
|
|
|
|
# Google Drive settings (when REMOTE_TYPE=gdrive)
|
|
# GDRIVE_SERVICE_ACCOUNT_FILE=""
|
|
# GDRIVE_ROOT_FOLDER_ID=""
|