new file: .env.example
new file: README.md new file: docker-compose.yml new file: media-webgui/Dockerfile new file: media-webgui/app.py new file: media-webgui/static/style.css
This commit is contained in:
32
.env.example
Normal file
32
.env.example
Normal file
@@ -0,0 +1,32 @@
|
||||
TZ=Europe/Berlin
|
||||
WEBGUI_PORT=8080
|
||||
|
||||
# Optional Basic Auth (leave empty to disable)
|
||||
BASIC_AUTH_USER=admin
|
||||
BASIC_AUTH_PASS=change_me
|
||||
|
||||
# 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
|
||||
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
|
||||
Reference in New Issue
Block a user