Skip to content

Instantly share code, notes, and snippets.

@highgain86j
Last active February 3, 2023 13:06
Show Gist options
  • Star 27 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save highgain86j/b7c281f685ad474841446c3b06d598b6 to your computer and use it in GitHub Desktop.
Save highgain86j/b7c281f685ad474841446c3b06d598b6 to your computer and use it in GitHub Desktop.
nginx configuration for reverse-proxying icecast2 streaming server.
server {
listen 80;
listen [::]:80;
server_name radio.example.com;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Real-IP $remote_addr;
location / {
proxy_pass http://127.0.0.1:8000/;
subs_filter_types application/xspf+xml audio/x-mpegurl audio/x-vclt text/css text/html text/xml;
subs_filter ':8000/' '/' gi;
subs_filter '@localhost' '@example.com' gi;
subs_filter 'localhost' $host gi;
subs_filter 'Mount Point ' $host gi;
subs_filter '<h1 id="header">Icecast2 Status</h1><div id="menu"><ul><li><a href="admin/">Administration</a></li><li><a href="status.xsl">Server Status</a></li><li><a href="server_version.xsl">Version</a></li></ul></div>' '<!--<div id="menu"><ul><li><a href="admin/">Administration</a></li><li><a href="status.xsl">Server Status</a></li><li><a href="server_version.xsl">Version</a></li></ul></div>-->' gi;
location /admin/ {
deny all;
}
location /server_version.xsl {
deny all;
}
}
}
server {
listen 80;
listen [::]:80;
server_name radio.internal.example.com;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Real-IP $remote_addr;
location / {
proxy_pass http://127.0.0.1:8000/;
subs_filter_types application/xspf+xml audio/x-mpegurl audio/x-vclt text/css text/html text/xml;
subs_filter ':8000/' '/' gi;
subs_filter '@localhost' '@example.com' gi;
subs_filter 'localhost' $host gi;
subs_filter 'Mount Point ' $host gi;
}
}
@highgain86j
Copy link
Author

Added "listen [::]:80;" for IPv6 support.

@scysys
Copy link

scysys commented Mar 13, 2019

Some Ideas how to get the Real visitor IP? With your Example I getting only the Proxy IP on Icecast Logs.

@rileywilddog
Copy link

@joshopkins787
Copy link

How would you apply this to force the connection to be SSL.

@crmb
Copy link

crmb commented Jul 2, 2020

Some Ideas how to get the Real visitor IP? With your Example I getting only the Proxy IP on Icecast Logs.

you can use icecast-kh with

<paths>
<x-forwarded-for>x.x.x.x</x-forwarded-for>
(...)
</paths>

in config (x.x.x.x = ip of your proxy)

@josh2112
Copy link

josh2112 commented Oct 6, 2022

You don't need text/html in the subs_filter_types list as it's always filtered. In fact, if you do included it, nginx will complain to you about [warn] duplicate MIME type "text/html".

Otherwise, great config!

@tsulatsitamim
Copy link

tsulatsitamim commented Dec 20, 2022

can we send audio stream from client (butt) through this nginx config?

@AyrA
Copy link

AyrA commented Feb 3, 2023

No. And you should not do it either. See this note from the icecast maintainer: https://stackoverflow.com/questions/51786404/icecast2-running-under-nginx-not-able-to-connect/51786791#51786791

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment