Spaces:
Running
Running
Create config.yml
Browse files- config.yml +34 -0
config.yml
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Simple configuration file for yt-dlp webui
|
2 |
+
|
3 |
+
---
|
4 |
+
# Host where server will listen at (default: "0.0.0.0")
|
5 |
+
#host: 0.0.0.0
|
6 |
+
|
7 |
+
# Port where server will listen at (default: 3033)
|
8 |
+
#port: 8989
|
9 |
+
|
10 |
+
# Directory where downloaded files will be stored (default: ".")
|
11 |
+
downloadPath: /home/user/archive
|
12 |
+
|
13 |
+
# [optional] Enable RPC authentication (requires username and password)
|
14 |
+
#require_auth: true
|
15 |
+
#username: my_username
|
16 |
+
#password: my_random_secret
|
17 |
+
|
18 |
+
# [optional] The download queue size (default: logical cpu cores)
|
19 |
+
queue_size: 8 # min. 2
|
20 |
+
|
21 |
+
# [optional] Full path to the yt-dlp (default: "yt-dlp")
|
22 |
+
#downloaderPath: /usr/local/bin/yt-dlp
|
23 |
+
|
24 |
+
# [optional] Enable file based logging with rotation (default: false)
|
25 |
+
#enable_file_logging: false
|
26 |
+
|
27 |
+
# [optional] Directory where the log file will be stored (default: ".")
|
28 |
+
#log_path: .
|
29 |
+
|
30 |
+
# [optional] Directory where the session database file will be stored (default: ".")
|
31 |
+
#session_file_path: .
|
32 |
+
|
33 |
+
# [optional] Path where the sqlite database will be created/opened (default: "./local.db")
|
34 |
+
#local_database_path
|