Apache 代理设置背后的 Icecast - 如何保留原始侦听器 IP
Icecast behind Apache proxy setup - How to preserve the original listener IP
我在 apache 代理后面的端口 8000 上有一个 icacast-kh 服务器 运行。
在 listeners stats 的 Icecast 管理页面上,我看不到原始 IP 侦听器。
我遵循了一些关于如何在使用 Apache 时保留原始 IP 的教程,但由于某些未知原因,它不适用于 Icecast。我需要它与 Apache 一起工作而不是与 nginx 一起工作(我找到了解决这个问题的方法,但它使用了 nginx)。
以下是有关我当前设置的更多详细信息:
- icecast-2.4.0-kh15
- ubuntu 20.04
- Apache/2.4.41
这是主机文件:
<VirtualHost *:80>
ServerName live.domain.com
ServerAdmin info@domain.com
RemoteIPHeader X-Forwarded-For
RemoteIPInternalProxy 127.0.0.0/8
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8000/
ProxyPassReverse / http://127.0.0.1:8000/
</VirtualHost>
这里是 icecast 配置的一部分:
<hostname>127.0.0.1</hostname>
<listen-socket>
<port>8000</port>
</listen-socket>
...
在此先感谢您的帮助!
感谢@AlexParamonov,我设法解决了这个问题。
在icecast XML配置中添加节点:
<paths>
<x-forwarded-for>127.0.0.1</x-forwarded-for>
...
</paths>
我在 apache 代理后面的端口 8000 上有一个 icacast-kh 服务器 运行。 在 listeners stats 的 Icecast 管理页面上,我看不到原始 IP 侦听器。 我遵循了一些关于如何在使用 Apache 时保留原始 IP 的教程,但由于某些未知原因,它不适用于 Icecast。我需要它与 Apache 一起工作而不是与 nginx 一起工作(我找到了解决这个问题的方法,但它使用了 nginx)。
以下是有关我当前设置的更多详细信息:
- icecast-2.4.0-kh15
- ubuntu 20.04
- Apache/2.4.41
这是主机文件:
<VirtualHost *:80>
ServerName live.domain.com
ServerAdmin info@domain.com
RemoteIPHeader X-Forwarded-For
RemoteIPInternalProxy 127.0.0.0/8
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8000/
ProxyPassReverse / http://127.0.0.1:8000/
</VirtualHost>
这里是 icecast 配置的一部分:
<hostname>127.0.0.1</hostname>
<listen-socket>
<port>8000</port>
</listen-socket>
...
在此先感谢您的帮助!
感谢@AlexParamonov,我设法解决了这个问题。
在icecast XML配置中添加节点:
<paths>
<x-forwarded-for>127.0.0.1</x-forwarded-for>
...
</paths>