]> git.0d.be Git - panikweb.git/commitdiff
misc: remove :8000 port from streaming URLs
authorFrédéric Péters <fpeters@0d.be>
Fri, 10 Jun 2022 21:46:13 +0000 (23:46 +0200)
committerFrédéric Péters <fpeters@0d.be>
Fri, 10 Jun 2022 21:46:13 +0000 (23:46 +0200)
panikweb/settings.py

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