1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-29 04:25:55 -04:00

doc updates

svn path=/icecast/branches/kh/icecast/; revision=7631
This commit is contained in:
Karl Heyes 2004-08-25 16:12:37 +00:00
parent c81455bacd
commit eddcf59867
3 changed files with 16 additions and 0 deletions

9
NEWS
View File

@ -19,6 +19,15 @@ clients to alternative slave hosts.
. authenticated relays, those that match the relay user/pass, bypass the
max-listener check
kh52
. A lot of resync work with trunk
. add queue shrinking, reduces queues to either last listener or burst
. minor race fix, mp3 url update lock.
. allow for xsl files to show inactive mounts but with active fallbacks
. Add <hidden> attribute to <mount> to prevent xsl display
. add <burst-on-connect> flag to maintain compatability with trunk
. doc updates
kh51
. make config lock a rwlock instead of mutex, removes unneccesary stalling
and removes possible (although not reported) deadlock cases

View File

@ -108,6 +108,7 @@
<fallback-mount>/example2.ogg</fallback-mount>
<fallback-override>1</fallback-override>
<fallback-when-full>1</fallback-when-full>
<hidden>1</hidden>
<no-yp>1</no-yp>
<authentication type="htpasswd">
<option name="filename" value="myauth"/>

View File

@ -343,6 +343,12 @@ listening clients back from the fallback mount.
This optional setting allows for providing a burst size which overrides the default burst size
as defined in limits. The value is in bytes.
</div>
<h4>hidden</h4>
<div class=indentedbox>
Enable this to prevent this mount from being shown on the xsl pages. This is mainly
for cases where a local relay is configured and you do not want the source of the local
relay to be shown
</div>
<h4>authentication</h4>
<div class=indentedbox>
This specifies that the named mount point will require listener authentication. Currently, we only support a file-based authentication scheme (type=htpasswd). Users and encrypted password are placed in this file (separated by a :) and all requests for this mountpoint will require that a user and password be supplied for authentication purposes. These values are passed in via normal HTTP Basic Authentication means (i.e. http://user:password@stream:port/mountpoint.ogg). Users and Passwords are maintained via the web admin interface. A mountpoint configured with an authenticator will display a red key next to the mount point name on the admin screens. You can read more about listener authentication <a href="icecast2_listenerauth.html">here</a>.