Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. <icecast>
  2. <!-- location and admin are two arbitrary strings that are e.g. visible
  3. on the server info page of the icecast web interface
  4. (server_version.xsl). -->
  5. <location>Earth</location>
  6. <admin>icemaster@localhost</admin>
  7.  
  8. <!-- This is the hostname other people will use to connect to your server.
  9. It affects mainly the urls generated by Icecast for playlists and yp
  10. listings. You MUST configure it properly for YP listings to work!
  11. -->
  12. <hostname>82.14.144.45</hostname>
  13.  
  14. <!-- IMPORTANT!
  15. Especially for inexperienced users:
  16. Start out by ONLY changing all passwords and restarting Icecast.
  17. For detailed setup instructions please refer to the documentation.
  18. It's also available here: http://icecast.org/docs/
  19. -->
  20.  
  21. <limits>
  22. <clients>100</clients>
  23. <sources>2</sources>
  24. <queue-size>524288</queue-size>
  25. <client-timeout>30</client-timeout>
  26. <header-timeout>15</header-timeout>
  27. <source-timeout>10</source-timeout>
  28. <!-- If enabled, this will provide a burst of data when a client
  29. first connects, thereby significantly reducing the startup
  30. time for listeners that do substantial buffering. However,
  31. it also significantly increases latency between the source
  32. client and listening client. For low-latency setups, you
  33. might want to disable this. -->
  34. <burst-on-connect>1</burst-on-connect>
  35. <!-- same as burst-on-connect, but this allows for being more
  36. specific on how much to burst. Most people won't need to
  37. change from the default 64k. Applies to all mountpoints -->
  38. <burst-size>65535</burst-size>
  39. </limits>
  40.  
  41. <authentication>
  42. <!-- Sources log in with username 'source' -->
  43. <source-password>SoundsFM</source-password>
  44. <!-- Relays log in with username 'relay' -->
  45. <relay-password>hackme</relay-password>
  46.  
  47. <!-- Admin logs in with the username given below -->
  48. <admin-user>admin</admin-user>
  49. <admin-password>fuckingpassword</admin-password>
  50. </authentication>
  51.  
  52. <!-- set the mountpoint for a shoutcast source to use, the default if not
  53. specified is /stream but you can change it here if an alternative is
  54. wanted or an extension is required
  55. <shoutcast-mount>/live</shoutcast-mount>
  56. -->
  57.  
  58. <!-- Uncomment this if you want directory listings -->
  59. <!--
  60. <directory>
  61. <yp-url-timeout>15</yp-url-timeout>
  62. <yp-url>http://dir.xiph.org/cgi-bin/yp-cgi</yp-url>
  63. </directory>
  64. -->
  65.  
  66. <!-- You may have multiple <listener> elements -->
  67. <listen-socket>
  68. <port>1604</port>
  69. <!-- <bind-address>82.14.144.45</bind-address> -->
  70. <!-- <shoutcast-mount>/live</shoutcast-mount> -->
  71. </listen-socket>
  72. <!--
  73. <listen-socket>
  74. <port>1604</port>
  75. </listen-socket>
  76. -->
  77. <!--
  78. <listen-socket>
  79. <port>8443</port>
  80. <ssl>1</ssl>
  81. </listen-socket>
  82. -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement