mirror of
https://github.com/sartoopjj/thefeed.git
synced 2026-05-19 11:24:36 +03:00
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
# ============================================================
|
|
# thefeed-server — Docker Environment Variables
|
|
# ============================================================
|
|
# Copy this file to .env and fill in your values:
|
|
# cp .env.example .env
|
|
# ============================================================
|
|
|
|
# ----- Required -----
|
|
|
|
# Your DNS domain (e.g., t.example.com)
|
|
THEFEED_DOMAIN=t.example.com
|
|
|
|
# Encryption passphrase (shared between server and client)
|
|
THEFEED_KEY=your-secret-passphrase
|
|
|
|
# ----- Telegram Mode -----
|
|
# Default: --no-telegram (public channels only, no login needed)
|
|
# To use Telegram API, uncomment these AND remove --no-telegram from compose:
|
|
|
|
#TELEGRAM_API_ID=12345
|
|
#TELEGRAM_API_HASH=your-api-hash
|
|
#TELEGRAM_PHONE=+1234567890
|
|
#TELEGRAM_PASSWORD=your-2fa-password
|
|
|
|
# ----- Optional Settings -----
|
|
|
|
# Max messages per channel (default: 15)
|
|
#THEFEED_MSG_LIMIT=15
|
|
|
|
# Allow remote channel management via DNS (default: disabled)
|
|
#THEFEED_ALLOW_MANAGE=0
|
|
|
|
# Nitter RSS instances for X/Twitter (comma-separated)
|
|
#THEFEED_X_RSS_INSTANCES=https://nitter.net,http://nitter.net
|
|
|
|
# Max random padding bytes in DNS responses (anti-DPI, default: 32)
|
|
#THEFEED_PADDING=32
|
|
|
|
# Log every decoded DNS query (default: disabled)
|
|
#THEFEED_DEBUG=0
|