rss email digests over ssh because you're a cool kid herald.dunkirk.sh
go rss rss-reader ssh charm
at main 629 B view raw
1# Herald Configuration 2 3host: 0.0.0.0 4ssh_port: 2222 5http_port: 8080 6 7# Public URL where Herald is accessible 8origin: http://localhost:8080 9 10# External SSH port (defaults to ssh_port if not set) 11# Use this when SSH is exposed through a different port publicly 12# external_ssh_port: 22 13 14# SSH host keys (generated on first run if missing) 15host_key_path: ./host_key 16 17# Database 18db_path: ./herald.db 19 20# SMTP 21smtp: 22 host: smtp.example.com 23 port: 587 24 user: sender@example.com 25 pass: ${SMTP_PASS} # Env var substitution 26 from: herald@example.com 27 28# Auth 29allow_all_keys: true 30# allowed_keys: 31# - "ssh-ed25519 AAAA... user@host"