Skip to content

Instantly share code, notes, and snippets.

@svandragt
Last active February 27, 2016 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svandragt/f7ecb720416a68f096a1 to your computer and use it in GitHub Desktop.
Save svandragt/f7ecb720416a68f096a1 to your computer and use it in GitHub Desktop.
Local insecure Icecast setup
<!-- Sets up an icecast mount point on your own machine -->
<icecast>
<limits>
<sources>2</sources>
</limits>
<authentication>
<source-password>hackme</source-password>
<relay-password>hackme</relay-password>
<admin-user>admin</admin-user>
<admin-password>hackme</admin-password>
</authentication>
<mount>
<mount-name>/traktor.ogg</mount-name>
</mount>
<hostname>localhost</hostname>
<listen-socket>
<port>8000</port>
</listen-socket>
<fileserve>1</fileserve>
<paths>
<logdir>./logs</logdir>
<webroot>./web</webroot>
<adminroot>./admin</adminroot>
<alias source="/" dest="/status.xsl"/>
</paths>
<logging>
<accesslog>access.log</accesslog>
<errorlog>error.log</errorlog>
<loglevel>2</loglevel> <!-- 4 Debug, 3 Info, 2 Warn, 1 Error -->
</logging>
</icecast>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment