]> git.0d.be Git - panikweb.git/commitdiff
switch back streaming URLs to plain http
authorFrédéric Péters <fpeters@0d.be>
Fri, 10 Jun 2022 21:29:56 +0000 (23:29 +0200)
committerFrédéric Péters <fpeters@0d.be>
Fri, 10 Jun 2022 21:29:56 +0000 (23:29 +0200)
panikweb/settings.py

index 8c1bcde150f48382246598b71eb616e89c13e079..52fdd6a32bc38230f39d9d5b2dd4018e4952ad16 100644 (file)
@@ -247,14 +247,14 @@ PODCASTS_DEFAULT_IMAGE_PATH = '/static/img/logo-panik-500.png'
 RADIO_STREAM_URLS = [
     {
         'id': 'ogg',
 RADIO_STREAM_URLS = [
     {
         'id': 'ogg',
-        'm3u_url': 'https://streaming.domainepublic.net/radiopanik.ogg.m3u',
-        'url': 'https://streaming.domainepublic.net/radiopanik.ogg',
+        'm3u_url': 'http://streaming.domainepublic.net:8000/radiopanik.ogg.m3u',
+        'url': 'http://streaming.domainepublic.net:8000/radiopanik.ogg',
         'type': 'audio/ogg',
     },
     {
         'id': 'mp3',
         'type': 'audio/ogg',
     },
     {
         'id': 'mp3',
-        'm3u_url': 'https://streaming.domainepublic.net/radiopanik.mp3.m3u',
-        'url': 'https://streaming.domainepublic.net/radiopanik.mp3',
+        'm3u_url': 'http://streaming.domainepublic.net:8000/radiopanik.mp3.m3u',
+        'url': 'http://streaming.domainepublic.net:8000/radiopanik.mp3',
         'type': 'audio/mpeg',
     },
 ]
         'type': 'audio/mpeg',
     },
 ]