Don't include config.php in repo

This commit is contained in:
Pierre Rudloff 2015-01-07 10:45:40 +01:00
parent 816b556c65
commit 298d8ed195
2 changed files with 1 additions and 0 deletions

19
config.example.php Normal file
View file

@ -0,0 +1,19 @@
<?php
/**
* PHP web interface for youtube-dl (http://rg3.github.com/youtube-dl/)
* Config file
*
* PHP Version 5.3.10
*
* @category Youtube-dl
* @package Youtubedl
* @author Pierre Rudloff <rudloff@strasweb.fr>
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
* @link http://rudloff.pro
* */
define('YOUTUBE_DL', './youtube-dl');
define('PYTHON', '/usr/bin/python');
define('PARAMS', '--no-playlist --no-warnings');
define('CONVERT', true);
define('MAINTENANCE', false);
?>