Skip to content

Instantly share code, notes, and snippets.

@moxuse
Created November 15, 2012 07:38
Show Gist options
  • Save moxuse/4077236 to your computer and use it in GitHub Desktop.
Save moxuse/4077236 to your computer and use it in GitHub Desktop.
icecast config example
<icecast>
<location>Tokyo</location>
<admin>your@address.com</admin>
<limits>
<clients>100</clients>
<sources>2</sources>
<threadpool>5</threadpool>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>
<header-timeout>15</header-timeout>
<source-timeout>10</source-timeout>
<burst-on-connect>1</burst-on-connect>
<burst-size>65535</burst-size>
</limits>
<authentication>
<source-password>YOUR PASSWORD</source-password>
<relay-password>YOUR PASSWORD</relay-password>
<admin-user>YOUR ADMIN</admin-user>
<admin-password>YOUR PASSWORD</admin-password>
</authentication>
<hostname>localhost</hostname>
<listen-socket>
<port>8000</port>
<bind-address>0.0.0.0</bind-address>
</listen-socket>
<fileserve>1</fileserve>
<paths>
<basedir>/usr/local/Cellar/icecast/2.3.3/share/icecast</basedir>
<logdir>/usr/local/Cellar/icecast/2.3.3/var/log/icecast</logdir>
<webroot>/usr/local/Cellar/icecast/2.3.3/share/icecast/web</webroot>
<adminroot>/usr/local/Cellar/icecast/2.3.3/share/icecast/admin</adminroot>
<alias source="/" destination="/status.xsl"/>
</paths>
<logging>
<accesslog>access.log</accesslog>
<errorlog>error.log</errorlog>
<loglevel>4</loglevel> <!-- 4 Debug, 3 Info, 2 Warn, 1 Error -->
<logsize>10000</logsize> <!-- Max size of a logfile -->
</logging>
<security>
<chroot>0</chroot>
<changeowner>
<user>nobody</user>
<group>nogroup</group>
</changeowner>
</security>
</icecast>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment