Add podcast proxy support for Martin
[noxon-gateway.git] / data / config.php.dist
index 42936beced2367bf6b9655bc94908ccbd4b63be9..e5bdbc5ee9c9882b1d47018e806ced6442cc6e89 100644 (file)
@@ -5,6 +5,23 @@ $mediatomb = array(
     'user' => 'fixme',
     'pass' => 'fixme',
     'host' => 'fixme',
-    'port' => '49152'
+    'port' => '49152',
+    'singleFileDirectories' => array(
+        'internetradio/Kindergeschichten/'
+    ),
 );
+
+//MIME types in addition to MP3 files that the clients
+//support (and do not need transcoding for)
+$clientSupport = [
+    '127.0.0.1' => [
+        'audio/ogg' => true,
+    ],
+];
+
+//if this is set, transcode caching is activated
+$enableCache = false;
+
+//if this is true, podcast URLs are proxied
+$enablePodcastProxy = false;
 ?>