Skip to content
Snippets Groups Projects
Select Git revision
  • 33117b2101628256986ac390c02ec01f6c1609f6
  • master default
2 results

config.php-dist

Blame
  • config.php-dist 637 B
    <?php
    
    $sb['host'] = 'localhost';
    $sb['post'] = '8081';
    $sb['path'] = '/';
    $sb['key']  = 'YOUR-SICKBEARD-API-KEY';
    $sb['ssl']  = false;
    
    $cp['host'] = 'localhost';
    $cp['post'] = '8082';
    $cp['path'] = '/';
    $cp['key']  = 'YOUR-COUCHPOTATO-KEY';
    $cp['ssl']  = false;
    
    $ml['host'] = 'localhost';
    $ml['post'] = '8083';
    $ml['path'] = '/';
    $ml['key']  = 'YOUR-MYLAR-KEY';
    $ml['ssl']  = false;
    
    $showsPath  = '/storage/media/tv';
    $moviesPath = '/storage/media/movies';
    $comicsPath = '/storage/media/comics';
    
    $cacheTTL = 3600;
    
    $cdn['enabled'] = false;
    $cdn['host']    = 'cdn#.example.com';
    $cdn['count']   = 2;
    
    ?>