Setting up your domain for broadcasting and listening

You can set up your own domain as a link to the radio stream.
In the examples , blue shows the data that needs to be changed 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
It is enough to have or register a domain with the ability to manage DNS records. For example, you registered the domain domain.ru , then to direct to the subdomain live.domain.ru add 1 entry in the DNS management of your domain. See below for an example of DNS settings :
live.domain.ru. CNAME listen1 .myradio24.com.

Additionally: After this, you can additionally configure an https link for your domain without a port: https://live.domain.ru/login . In this case, we need to configure an SSL certificate on our part. We can set up a certificate for your subdomain for 10 € . (top up balance)

Option 2: An arbitrary link on your website with redirection to our stream, example link: https://domain.ru/live
If your site is hosted on a hosting that supports .htaccess, simply create a .htaccess file in the root of the site (if it doesn't exist) and add the following lines to the top of the 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 through PHP . Just 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. Write to us and we will set up broadcasting to a remote server. Please note that depending on network problems between servers, broadcasting problems may occur. In this case, you can set up any broadcast link, since it is your own server. Also, any link can be configured - if you have your own VPS or dedicated server. In this case, setup will be a paid service.

Need help setting up - our contacts .