Skip to content

Instantly share code, notes, and snippets.

@gipi
Created February 21, 2012 09:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gipi/1875396 to your computer and use it in GitHub Desktop.
Save gipi/1875396 to your computer and use it in GitHub Desktop.
Simple configuration file for icecast2 server
<icecast>
<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>hackme</source-password>
<relay-password>hackme</relay-password>
<admin-user>admin</admin-user>
<admin-password>hackme</admin-password>
</authentication>
<hostname>gits.local</hostname>
<listen-socket>
<port>8000</port>
<bind-address>127.0.0.1</bind-address>
</listen-socket>
<mount>
<mount-name>/test.ogv</mount-name>
<username>source</username>
<password>sourcepassword</password>
<fallback-mount>/test_fb.ogv</fallback-mount>
<fallback-override>1</fallback-override>
<max-listeners>150</max-listeners>
<hidden>0</hidden>
<charset>ISO8859-1</charset>
<burst-size>65536</burst-size>
<type>application/ogg</type>
<subtype>theora</subtype>
</mount>
<fileserve>1</fileserve>
<paths>
<basedir>/usr/share/icecast2</basedir>
<logdir>/var/log/icecast2</logdir>
<webroot>/usr/share/icecast2/web</webroot>
<adminroot>/usr/share/icecast2/admin</adminroot>
<alias source="/" dest="/status.xsl"/>
</paths>
<logging>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment