X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=example_config.php;h=7c5c6e1f030bebb18b7bb2b69b53a75f423c825d;hb=HEAD;hp=2de765b6705dd77a878237d6155e4cb7b74d0b14;hpb=2fa64919a3ceea723bf035e3c88709caaecaf389;p=mirrors%2FJukeBox.git diff --git a/example_config.php b/example_config.php index 2de765b..7c5c6e1 100755 --- a/example_config.php +++ b/example_config.php @@ -12,9 +12,8 @@ //Config-basic $title = 'Harvie\'s JuKe!Box'; //Title of jukebox $music_dir = 'music'; //Local path to directory with music -$base_url = dirname($_SERVER['SCRIPT_NAME']); //URL of this directory ("./") $music_dir_url = 'http://your-server.net/jukebox/music'; //URL path to the same directory CHANGE IT! -$cache_passwd = 'renew123'; //You need this passwd to refresh search cache CHANGE IT! +$cache_passwd = ''; //You need this passwd to refresh search cache CHANGE IT! //Login $realm = 'music'; //HTTP Auth Banner $users = array( //List of 'user' => 'password' pairs @@ -29,5 +28,5 @@ $search_engines = array_merge($search_engines, array( */ //Bonuses if(isset($bonus_dir) && is_dir($bonus_dir)) { - $css_file = $base_url.'/'.$bonus_dir.'/themes/default/jukebox.css'; //CSS (Design/Theme) + $css_file = $base_url.$bonus_dir.'/themes/default/jukebox.css'; //CSS (Design/Theme) }