Youtube-dl-WebUI/config.php
p1rox 30f2477d34 Password protection added with session
Functions freeSpace and destFolderExists moved to utilities.php
2014-03-21 21:15:45 +01:00

22 lines
536 B
PHP

<?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
$folder = "videos/";
//Rename it only if you change list.php to myvideos.php for example
$listPage = "list.php";
// 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";
?>