41 lines
1012 B
YAML
41 lines
1012 B
YAML
# WISP Daily Backup Configuration
|
|
# ==============================
|
|
|
|
vpn:
|
|
# L2TP/IPsec connection to your home MikroTik gateway
|
|
server_ip: "76.195.7.60"
|
|
psk: "N2dinside1520!"
|
|
username: "shonuff" # L2TP username
|
|
password: "The.glow.1985" # L2TP password
|
|
interface: "ppp0"
|
|
|
|
# For PoC with home router, we don't need tower routes yet.
|
|
# Routes added here once we expand to tower CCRs.
|
|
routes: []
|
|
|
|
s3:
|
|
bucket: "mikrotik-ccr-backups" # Wasabi bucket name
|
|
region: "us-east-1"
|
|
prefix: "wisp-backups"
|
|
endpoint: "https://s3.us-east-1.wasabisys.com"
|
|
# Credentials in ~/.aws/credentials
|
|
|
|
towers:
|
|
# Proof of concept: just your home router
|
|
- name: "home-gateway"
|
|
ip: "10.77.0.2"
|
|
site: "home"
|
|
ssh_port: 22
|
|
ssh_user: "shonuff"
|
|
ssh_key: "/root/.ssh/wisp_rsa"
|
|
ssh_password: ""
|
|
|
|
# Future towers go here
|
|
|
|
backup:
|
|
log_lines: 500
|
|
temp_dir: "/root/.hermes/.backups/wisp-backups"
|
|
compress: true
|
|
retention_days: 7
|
|
timeout_seconds: 60
|