Skip to content

Instantly share code, notes, and snippets.

@exiva
Created October 1, 2011 02:08
Show Gist options
  • Save exiva/1255497 to your computer and use it in GitHub Desktop.
Save exiva/1255497 to your computer and use it in GitHub Desktop.
icecast config
<icecast>
<limits>
<clients>4</clients>
<sources>1</sources>
<threadpool>1</threadpool>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>
<header-timeout>15</header-timeout>
<source-timeout>120</source-timeout>
<burst-on-connect>0</burst-on-connect>
<burst-size>0</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>192.168.1.31</hostname>
<paths>
<basedir>/tmp</basedir>
<logdir>/usr/local/Cellar/icecast/2.3.2/var/log/icecast</logdir>
<webroot>/usr/local/Cellar/icecast/2.3.2/share/icecast/web</webroot>
<adminroot>/usr/local/Cellar/icecast/2.3.2/share/icecast/admin</adminroot>
<alias source="/" dest="/listen.mp3"/>
</paths>
<listen-socket>
<port>8001</port>
</listen-socket>
<listen-socket>
<port>8002</port>
<shoutcast-compat>1</shoutcast-compat>
</listen-socket>
<logging>
<accesslog>access.log</accesslog>
<errorlog>error.log</errorlog>
<playlistlog>playlist.log</playlistlog>
<loglevel>3</loglevel>
<logsize>10240</logsize>
<logarchive>0</logarchive>
</logging>
<mount>
<mount-name>/listen</mount-name>
<max-listeners>8</max-listeners>
<no-yp>1</no-yp>
<intro></intro>
</mount>
<shoutcast-mount>/listen</shoutcast-mount>
<fileserve>1</fileserve>
<security>
<chroot>0</chroot>
</security>
</icecast>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment