forked from MTco/Youtube-dl-WebUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
34 lines (23 loc) · 945 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*** Config file ***/
//Rename it only if you change index.php to downloader.php for example
$mainPage = "index.php";
// -> with "/" <- at the end. Directory where you videos are downloaded. Make sure it exists to avoid any error.
$folder = "youtube-dl/";
//Rename it only if you change list.php to myvideos.php for example
$listPage = "list.php";
//Rename it only if you change get.php to download.php for example
$getPage = "get.php";
//Rename it only if you change downloadAsync.php to downloader.php for example
$ajaxPage = "downloadAsync.php";
//Rename it only if you change progressAsync.php to downloader.php for example
$progressPage = "progressAsync.php";
//Max URLs for file upload
$maxUrls = 128;
// Enable password to access the panel
// 1 -> enable 0 -> disable
$security = 1;
// PHP::md5(); You can use md5.php to generate an other one
// default : root
$secretPassword = "63a9f0ea7bb98050796b649e85481845";
?>