Listener Authentication

Demo

Active Member
I may be missing the point but, Why would you want that feature?
Scratching my head because I see no point in allowing all that to be viewed.
 

Support

Level 1 Support
Staff member
Is there a way to set up a listener user/password? Icecast server appears to support this: http://icecast.org/docs/icecast-2.4.0/auth.html

Thanks.

Hi Eric B,

Yes this is possible with Icecast as per that documentation. Icecast has a listener authentication feature which you can set up in the XML configuration (such as htpassword).

We would have to give you access to the control panels raw configuration file, which we can do. However, as far as we are aware only the URL based authentication might be possible as we don't have a way of giving you access to the file system for the htpasswd method at the moment we are afraid.

This is not something that we officially support by the way, so it's fine if you can get this working on your own but we can't help you much as we have not used it ourselves yet.

We did however recently have another user who tested this out and he stated that he got it working by navigating to the auth file in "/usr/local/centovacast/var/vhosts/username/" and he said that he added the following code below to one of the mount points before the closing </mount> and it was good to go. The username here being the main account username:

<!-- Added authentication section -->
<authentication type="htpasswd">
<option name="filename" value="/usr/local/centovacast/var/vhosts/username/myauth"/>
<option name="allow_duplicate_users" value="1"/>
</authentication>
<!-- End of Added authentication section -->

Hopefully this is of some help to you?
 
Top