Apache 代理设置背后的 Icecast - 如何保留原始侦听器 IP
Posted
技术标签:
【中文标题】Apache 代理设置背后的 Icecast - 如何保留原始侦听器 IP【英文标题】:Icecast behind Apache proxy setup - How to preserve the original listener IP 【发布时间】:2021-05-11 18:33:01 【问题描述】:我有一个 icacast-kh 服务器在 apache 代理后面的 8000 端口上运行。 在侦听器统计信息的 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>
...
提前感谢您的帮助!
【问题讨论】:
见***.com/questions/61022812/… @AlexParamonov - 谢谢!我不知道我是怎么错过这个 *** 问题的...... 【参考方案1】:感谢@AlexParamonov,我设法解决了这个问题。
在 icecast XML 配置中添加到节点:
<paths>
<x-forwarded-for>127.0.0.1</x-forwarded-for>
...
</paths>
【讨论】:
以上是关于Apache 代理设置背后的 Icecast - 如何保留原始侦听器 IP的主要内容,如果未能解决你的问题,请参考以下文章
Apache 反向代理背后的 Apache Zeppelin