33 lines
803 B
Bash
33 lines
803 B
Bash
TZ=Europe/Berlin
|
|
WEBGUI_PORT=8081
|
|
|
|
# Optional Basic Auth (leave empty to disable)
|
|
BASIC_AUTH_USER=admin
|
|
BASIC_AUTH_PASS=123456
|
|
|
|
# Paths inside container
|
|
OUTPUT_DIR=/output
|
|
MD5_DIR=/md5
|
|
|
|
# Jellyfin VM upload (SFTP)
|
|
JELLYFIN_HOST=192.168.1.1
|
|
JELLYFIN_PORT=22
|
|
JELLYFIN_USER=jellyfinuser
|
|
JELLYFIN_SSH_KEY=/ssh/id_ed25519
|
|
|
|
# Targets on Jellyfin VM
|
|
JELLYFIN_MOVIES_DIR=/jellyfin/Filme
|
|
JELLYFIN_SERIES_DIR=/jellyfin/Serien
|
|
|
|
# Engines
|
|
ENGINE_DEFAULT=auto # auto|ytdlp|direct|hoster
|
|
YTDLP_FORMAT=bestvideo+bestaudio/best
|
|
|
|
# Proxy pool (ONLY used for downloads; not for SFTP / webgui internal calls)
|
|
PROXY_MODE=round_robin # off|round_robin|random
|
|
# One proxy per line. Supported schemes: socks5://, socks4://, http://, https://
|
|
PROXY_LIST=
|
|
# Example:
|
|
# PROXY_LIST=socks5://1.2.3.4:1080
|
|
# http://5.6.7.8:3128
|