1720268a06edc9338e2f3efca93ccb31d44afea3
[noxon-gateway.git] / data / config.php.dist
1 <?php
2 //$host1 = 'http://example.org/';
3 //$host2 = 'http://example.org/';
4 $mediatomb = array(
5     'user' => 'fixme',
6     'pass' => 'fixme',
7     'host' => 'fixme',
8     'port' => '49152',
9     'singleFileDirectories' => array(
10         'internetradio/Kindergeschichten/'
11     ),
12 );
13
14 //MIME types in addition to MP3 files that the clients
15 //support (and do not need transcoding for)
16 $clientSupport = [
17     '127.0.0.1' => [
18         'audio/ogg' => true,
19     ],
20 ];
21
22 //if this is set, transcode caching is activated
23 $cacheDir = null;
24 //http-accessible cache dir URL
25 $cacheDirUrl = null;
26 ?>