Setting up your domain for broadcasting and listening

You can set up your own domain as a link to the radio stream.
The examples show the data in blue that needs to be updated to your own. There are several options:

Option 1: Full subdomain direction to our server, example of your link:
http://live.domain.ru:9000/login
All you need is to own or register a domain with DNS record management. For example, if you registered domain.ru , then to point it to the live.domain.ru subdomain, add one record in your domain's DNS management. See an example of DNS settings below:
live.domain.ru. CNAME listen1 .myradio24.com.

IMPORTANT! We no longer configure SSL for your domain, so this link will not work on sites with https. Use Option 2 or 3.

Option 2: A custom link on your site redirecting to our stream. Example link: https://domain.ru/live
If your site is hosted on a hosting service that supports .htaccess, simply create an .htaccess file in the root of your site (if it doesn't already exist) and add the following lines to the top of that file:
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/ live $
RewriteRule ^(.*)$ https://myradio24.org/ login [R=302,L]

Option 3: Works the same as Option 2, but the redirection is done via PHP . Simply add the following code to the top of any PHP file:
<?php
header("Location: https://myradio24.org/login ");
die();

Option 4: If you have your own configured IceCast2 server and want to send a radio stream to it, this is also possible. Contact us, and we'll set up broadcasting to a remote server for you. Please note that broadcasting issues may occur depending on network issues between the servers. In this case, you can configure any broadcast link, as this is your own server. You can also configure any link if you have your own VPS or dedicated server. In this case, setup is a paid service.

Need help with setup? Contact us .