Icecast 2 Config File

Overview

This section will describe each section of the config file and is grouped into the following sections:

  • Limits
  • Authentication
  • YP Directory Settings
  • Misc Server settings
  • Relay settings
  • Mount Specific settings
  • File path settings
  • Logging
  • Security


    Limits

        <limits>
            <clients>100<clients>
            <sources>2<sources>
            <threadpool>5<threadpool>
            <queue-size>102400<queue-size>
            <client-timeout>30<client-timeout>
            <header-timeout>15<header-timeout>
            <source-timeout>10<source-timeout>
        <limits>
    

    This section contains server level settings that, in general, do not need to be changed. Only modify this section if you are know what you are doing.

    clients

    Total number of concurrent clients supported by the server. Listeners are considered clients, but so is accesses to any static content (i.e. fileserved content) and also any requests to gather stats. These are max *concurrent* connections for the entire server (not per mountpoint).

    sources

    Maximum number of connected sources supported by the server.

    threadpool

    This is the number of threads that are started to handle client connections. You may need to increase this value if you are running a high traffic stream. This recommended value is for a small to medium traffic server.

    queue-size

    This is the maximum size (in bytes) of a client (listener) queue. A listener may temporarily lag behind due to network congestion and in this case an internal queue is maintained for each listener. If the queue grows larger than this config value, then the listener will be removed from the stream.

    client-timeout

    This does not seem to be used.

    header-timeout

    The maximum time (in seconds) to wait for a request to come in once the client has made a connection to the server. In general this value should not need to be tweaked.

    source-timeout

    If a connected source does not send any data within this timeout period (in seconds), then the source connection will be removed from the server.



    Authentication

        <authentication>
            <source-password>hackme<source-password>
            <relay-password>hackme<relay-password>
            <admin-user>admin<admin-user>
            <admin-password>hackme<admin-password>
        <authentication>
    

    This section contains all the users and passwords used for administration purposes or to connect sources and relays.

    source-password

    The unencrypted password used by sources to connect to icecast2. Currently, the username for all source connections must be 'source'. This is likely to change in the future.

    relay-password

    Currently not used.

    admin-user

    admin-password

    The username/password used for all administration functions. This includes retrieving statistics, accessing the web-based administration screens, etc. A list of these functions can be found in the "Administration" section of the manual.



    YP Directory Settings

        <directory>
            <yp-url-timeout>15<yp-url-timeout>
            <yp-url>http://dir.xiph.org/cgi-bin/yp-cgi<yp-url>
        <directory>
    

    This section contains all the settings for listing a stream on any of the Icecast2 YP Directory servers. Multiple occurances of this section can be specified in order to be listed on multiple directory servers.

    yp-url-timeout

    This value is the maximum time icecast2 will wait for a response from a particular directory server. The recommended value should be sufficient for most directory servers.

    yp-url

    The URL which icecast2 uses to communicate with the Directory server. The value for this setting is provided by the owner of the Directory server.



    Misc Server Settings

        <hostname>localhost<hostname>
    
        <-- You can use these two if you only want a single listener -->
        <-- <port>8000<port> -->
        <-- <bind-address>127.0.0.1<bind-address> -->
    
        <-- You may have multiple <listener> elements -->
        <listen-socket>
            <port>8000<port>
            <bind-address>127.0.0.1<bind-address>
        <listen-socket>
    
        <fileserve>1<fileserve>
    

    This section contains miscellaneous server settings. Note that multiple listen-socket sections may be configured in order to have icecast2 listen on multiple network interfaces. If a bind-address is not specified for a particular listen-socket, then the hostname parameter will be used to specify the address that will be bound.

    port

    The TCP port that will be used to accept client connections.

    bind-address

    And option IP address that can be used to bind to a specific network card. If not supplied, then <hostname> will be used.

    fileserve

    This flag turns on the icecast2 fileserver from which static files can be served. All files are served relative to the path specified in the <paths><webroot> configuration setting.



    Relay Settings

        <master-server>127.0.0.1<master-server>
        <master-server-port>8001<master-server-port>
        <master-update-interval>120<master-update-interval>
        <master-password>hackme<master-password>
    
        <relay>
            <server>127.0.0.1<server>
            <port>8001<port>
            <mount>example.ogg<mount>
            <local-mount>different.ogg<local-mount>
            <relay-shoutcast-metadata>0<relay-shoutcast-metadata>
        <relay>
    

    This section contains the server's relay settings. There are two types of relays: a "Master server relay" or a "Specific Mountpoint relay." A Master server relay is only supported between icecast2 servers and is used to relays all mountpoints on a remote icecast2 server.

    Master Relay

    The following diagram shows the basics of doing a Master relay. Note that Server 1 is configured with the <master-server>, <master-server-port>, etc settings and Server 2 is the server from which Server 1 will pull all attached mountpoints and relay them. Using a Master Server relay, ALL mountpoints on Server 2 will be relayed. If only specific mountpoints need to be relayed, then you must configure Server 1 as a "Specific Mountpoint Relay". Both Master server relays and Specific Mountpoint relays begin their "relaying" when the Server is started.
          |-----|                       |-----|
          |     |  all mountpoints      |     | /mount1
          |     | <-------------------  |     | /mount2.ogg
          |-----|                       |-----| /mount3
          Icecast 2                     Icecast 2 
          Server 1                      Server 2
          (RELAY SERVER)                (MASTER SERVER)
    
         configured with
         <master-server>
         settings 
    
    
    A server is configured as a Master Server relay by specifying the <master-server>, <master-server-port>,<master-update-interval>,<master-password> values in the config file. The server that is being relayed does not need any special configuration.

    master-server

    This is the IP for the server which contains the mountpoints to be relayed (Master Server).

    master-server-port

    This is the TCP Port for the server which contains the mountpoints to be relayed (Master Server).

    master-update-interval

    The interval (in seconds) that the Relay Server will poll the Master Server for any new mountpoints to relay.

    master-password

    This is the admin password on the Master server. It is used to query the server for a list of mountpoints to relay.

    Specific Mountpoint Relay

    The following diagram shows the basics of doing a Specific Mountpoint relay. Note that Server 1 is configured with the <relay> settings and Server 2 is the server from which Server 1 will pull the specified mountpoint(s) and relay them. Using a Specific Mountpoint Relay, only those mountpoints specified on Server 1 will be relayed from Server 2.
          |-----|                       |-----|
          |     |      /mount3          |     | /mount1
          |     | <-------------------  |     | /mount2.ogg
          |-----|                       |-----| /mount3
          Icecast 2                     Icecast 2/Shoutcast/Icecast
          Server 1                      Server 2
          (RELAY SERVER)                (REMOTE SERVER)
    
         configured with
         <relay>
         settings 
    
    
    Specific Mountpoint Relays can be configured to relay from an Icecast 2 server, as well as Icecast 1.x and Shoutcast. A server is configured as a Specific Mountpoint Server relay by specifying a <relay> XML chunk in the config file for each mountpoint to be relayed. The server that is being relayed does not need any special configuration. <server>127.0.0.1<server> <port>8001<port> <mount>example.ogg<mount> <local-mount>different.ogg<local-mount> <relay-shoutcast-metadata>0<relay-shoutcast-metadata>

    server

    This is the IP for the server which contains the mountpoint to be relayed.

    port

    This is the TCP Port for the server which contains the mountpoint to be relayed.

    mount

    The mountpoint located on the remote server. If you are relaying a shoutcast stream, this must be '/'.

    local-mount

    The name to use for the local mountpoint. This is what the mount will be named on the RELAY SERVER.

    relay-shoutcast-metadata

    If you are relaying a Shoutcast stream, you need to specify this indicator to also relay the metadata (song titles) that is part of the Shoutcast stream (1=enabled, 0=disabled).



    Mount Specific Settings

        <mount>
            <mount-name>/example-complex.ogg<mount-name>
            <username>othersource<username>
            <password>hackmemore<password>
            <max-listeners>1<max-listeners>
            <dump-file>/tmp/dump-example1.ogg<dump-file>
            <fallback-mount>example2.ogg<fallback-mount>
        <mount>
    

    This section contains settings which apply only to a specific mountpoint. Within this section you can reserve a specific mountpoint and set a source username/password for that mountpoint (not yet implemented) as well as specify individual settings which will apply only to the supplied mountpoint.

    mount-name

    The name of the mount point for which these settings apply.

    username

    An optional value which will set the username that a source must use to connect using this mountpoint.

    password

    An optional value which will set the password that a source must use to connect using this mountpoint.

    max-listeners

    An optional value which will set the maximum number of listeners that can be attached to this mountpoint.

    dump-file

    An optional value which will set the filename which will be a dump of the stream coming through on this mountpoint.

    fallback-mount

    This specifies a mountpoint that is used in the case of a source disconnect. If listeners are connected to the mount specified by the <mount-name> config value, then if the source is disconnected; all currently connected clients will be moved to the fallback-mount.



    Path Settings

        <paths>
            <basedir>./<basedir>
            <logdir>./logs<logdir>
            <pidfile>./icecast.pid<pidfile>
            <webroot>./web<webroot>
            <adminroot>./admin<adminroot>
            <alias source="/foo" dest="/bar"/>
        <paths>
    

    This section contains paths which are used for various things within icecast. All paths should not end in a '/'.

    basedir

    This path is used in conjunction with the chroot settings, and specified the base directory that is chrooted to when the server is started. This feature is not supported on win32.

    logdir

    This path specifies the base directory used for logging. Both the error.log and access.log will be created relative to this directory.

    pidfile

    This pathname specifies the file to write at startup and to remove at normal shutdown. The file contains the process id of the icecast process. This could be read and used for sending signals icecast.

    webroot

    This path specifies the base directory used for all static file requests. This directory can contain all standard file types (including mp3s and ogg vorbis files). For example, if webroot is set to /var/share/icecast2, and a request for http://server:port/mp3/stuff.mp3 comes in, then the file /var/share/icecast2/mp3/stuff.mp3 will be served.

    adminroot

    This path specifies the base directory used for all admin requests. More specifically, this is used to hold the XSLT scripts used for the web-based admin interface. The admin directory contained within the icecast distribution contains these files.

    alias source="/foo" dest="/bar"

    Aliases are used to provide a way to create multiple mountpoints that refer to the same mountpoint.



    Logging Settings

        <logging>
            <accesslog>access.log</accesslog>
            <errorlog>error.log</errorlog>
          	<loglevel>4</loglevel> <-- 4 Debug, 3 Info, 2 Warn, 1 Error -->
        </logging>
    

    This section contains information relating to logging within icecast. There are two logfiles currently generated by icecast, an error.log (where all log messages are placed) and an access.log (where all stream/admin/http requests are logged).

    Note that on non-win32 platforms, a HUP signal can be sent to icecast in which the log files are re-opened for appending giving the ability move/remove the log files.

    accesslog

    Into this file, all requests made to the icecast2 will be logged. This file is relative to the path specified by the <logdir> config value.

    errorlog

    All icecast generated log messages will be written to this file. If the loglevel is set too high (Debug for instance) then this file can grow fairly large over time. Currently, there is no log-rotation implemented.

    loglevel

    Indicates what messages are logged by icecast. Log messages are categorized into one of 4 types, Debug, Info, Warn, and Error.

    The following mapping can be used to set the appropraite value :


  • loglevel = 4 - Debug, Info, Warn, Error messages are printed
  • loglevel = 3 - Info, Warn, Error messages are printed
  • loglevel = 2 - Warn, Error messages are printed
  • loglevel = 1 - Error messages only are printed

    Security Settings

        <security>
            <chroot>0</chroot>
            <changeowner>
                <user>nobody</user>
                <group>nogroup</group>
    	</changeowner>
        </security>
    

    This section contains configuration settings that can be used to secure the icecast server by performing a chroot to a secured location. This is currently not supported on win32.

    chroot

    An indicator which specifies whether a chroot() will be done when the server is started. The chrooted path is specified by the <basedir> configuration value.

    changeowner

    This section indicates the user and group that will own the icecast process when it is started. These need to be valid users on the system.