37 lines
No EOL
822 B
TOML
37 lines
No EOL
822 B
TOML
[server]
|
|
port = 8282
|
|
host = "127.0.0.1"
|
|
# secret key needs to be 16 characters long or more
|
|
secret_key = "CHANGE_ME"
|
|
verify_requests = false
|
|
# max_dash_resolution = 1080
|
|
# encrypt_query_params = false
|
|
|
|
[cache]
|
|
enabled = true
|
|
# will get cached in /var/tmp/youtubei.js if you specify /var/tmp
|
|
# you need to change the --allow-write from deno run too
|
|
directory = "/var/tmp"
|
|
|
|
[networking]
|
|
#proxy = ""
|
|
proxy_file = "proxies.txt"
|
|
# Enable YouTube new video format UMP
|
|
ump = false
|
|
# external_videoplayback_proxy = ""
|
|
# fetch_timeout_ms = 10000
|
|
# fetch_retry_enable = true
|
|
# fetch_retry_times = 3
|
|
# fetch_retry_initial_debounce = 500
|
|
# fetch_retry_debounce_multiplier = 2
|
|
|
|
[jobs]
|
|
|
|
[jobs.youtube_session]
|
|
po_token_enabled = true
|
|
frequency = "*/1 * * * *"
|
|
frequency_seconds = 50
|
|
|
|
[youtube_session]
|
|
oauth_enabled = false
|
|
cookies = "" |