This repository was archived by the owner on Sep 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicecast-template.xml
67 lines (55 loc) · 2.21 KB
/
icecast-template.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<icecast>
<location>Russia</location>
<admin>{SHOUT_ADMIN_EMAIL}</admin>
<limits>
<clients>{SHOUT_SYSTEM_TUNE_CLIENTS}</clients>
<sources>{SHOUT_SYSTEM_TUNE_SOURCES}</sources>
<threadpool>{SHOUT_SYSTEM_TUNE_THREADPOOL}</threadpool>
<queue-size>{SHOUT_SYSTEM_TUNE_QUEUE_SIZE}</queue-size>
<client-timeout>{SHOUT_SYSTEM_TUNE_CLIENT_TIMEOUT}</client-timeout>
<header-timeout>{SHOUT_SYSTEM_TUNE_HEADER_TIMEOUT}</header-timeout>
<source-timeout>{SHOUT_SYSTEM_TUNE_SOURCE_TIMEOUT}</source-timeout>
<burst-on-connect>{SHOUT_SYSTEM_TUNE_BURST_ON_CONNECT}</burst-on-connect>
<burst-size>{SHOUT_SYSTEM_TUNE_BURST_SIZE}</burst-size>
</limits>
<authentication>
<source-password>{SHOUT_SOURCE_PASSWORD}</source-password>
<relay-password>{SHOUT_RELAY_PASSWORD}</relay-password>
<admin-user>{SHOUT_ADMIN_USERNAME}</admin-user>
<admin-password>{SHOUT_ADMIN_PASSWORD}</admin-password>
</authentication>
<mount type="normal">
<mount-name>/{SHOUT_MOUNT}</mount-name>
<username>{SHOUT_USER}</username>
<password>{SHOUT_PASSWORD}</password>
<stream-name>{SHOUT_STREAM_NAME}</stream-name>
<stream-description>{SHOUT_STREAM_DESCRIPTION}</stream-description>
<public>1</public>
</mount>
<hostname>{SHOUT_SYSTEM_TUNE_HOSTNAME}</hostname>
<listen-socket>
<port>8000</port>
<bind-address>0.0.0.0</bind-address>
</listen-socket>
<fileserve>1</fileserve>
<paths>
<basedir>/etc/icecast2/</basedir>
<logdir>/var/log/icecast2/</logdir>
<webroot>/etc/icecast2/web</webroot>
<adminroot>/etc/icecast2/admin</adminroot>
<alias source="/" destination="/status.xsl" />
</paths>
<logging>
<accesslog>access.log</accesslog>
<errorlog>error.log</errorlog>
<loglevel>{SHOUT_SYSTEM_TUNE_LOGLEVEL}</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>