Add podcast proxy support for Martin
[noxon-gateway.git] / data / config.php.dist
index 67288599d1df8f95a057b8bf2ba78f8717f07d3f..e5bdbc5ee9c9882b1d47018e806ced6442cc6e89 100644 (file)
@@ -10,4 +10,18 @@ $mediatomb = 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;
 ?>