Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. ?php /* General configuration of Cakebox */ $app["cakebox.root"] = "/home/david/torrents/"; // Root directory Cakebox have to scan $app["cakebox.access"] = "/cakebox/david/"; // Alias used in web server for direct access $app["cakebox.language"] = "fr"; //Language of Cakebox. Could be : fr, en /* Directory settings */ $app["directory.ignoreDotFiles"] = false; $app["directory.ignore"] = "//"; // Regex for files exclusion. For exemple : "/(\.nfo|\.test)$/" /* Web player settings */ $app["player.default_type"] = "html5"; // html5 or divx or vlc $app["player.auto_play"] = "false"; /* Betaseries account NB: Ask API key here http://www.betaseries.com/api/ */ $app["bs.login"] = ""; $app["bs.passwd"] = ""; $app["bs.apikey"] = ""; $app["rights.canPlayMedia"] = true; $app["rights.canDownloadFile"] = true; $app["rights.canArchiveDirectory"] = true; $app["rights.canDelete"] = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement