获取新 IP 地址后,具有 DynDNS 的 ProxyPass(Apache2) 失败

ProxyPass(Apache2) with a DynDNS fails after getting a new IP-Address

这个问题让我很头疼,找不到解决办法。我有以下设置。

连接到 Fritz.Box 的 IP 摄像机可通过动态 DNS 从 selfhost.eu 访问。我有一个带有 Apache2 的网络服务器,带有一个到这个 xxx.selfhost.eu-URL 的 ProxyPass。当有人访问我的网络服务器时,他将获得网络摄像头的实时更新,因为 ProxyPass 工作正常,直到 Fritz.Box 获得新的 IP 地址。只有当我重新启动 Apache2-Server 时,它才会再次工作,所以我的想法是,也许 Apache 只是缓存了 IP 地址,我必须停止它,但我不确定。

也许有人有想法。谢谢!

这是我的 ProxyPass 设置

ProxyPass "/tmpfs" "http://xxx.selfhost.eu:59677/tmpfs"

这里还有一些来自 apache 的相关日志错误

2017-05-07 16:04:43 Error (110)Connection timed out: AH00957: HTTP: attempt to connect to 79.210.185.5:59677 (xxx.selfhost.eu) failed Apache-Fehler 2017-05-07 16:04:43 Error AH00959: ap_proxy_connect_backend disabling worker for (xxx.selfhost.eu) for 0s Apache-Fehler 2017-05-07 16:04:43 Error 79.204.237.78 AH01114: HTTP: failed to make connection to backend: xxx.selfhost.eu, referer: https://xxx.yyy.de/ Apache-Fehler 2017-05-07 16:04:43 Error (110)Connection timed out: AH00957: HTTP: attempt to connect to 79.210.185.5:59677 (xxx.selfhost.eu) failed Apache-Fehler 2017-05-07 16:04:43 Error 80.143.179.219 AH01114: HTTP: failed to make connection to backend: xxx.selfhost.eu, referer: https://xxx.yyy.de/ Apache-Fehler

disablereuse=On有帮助吗?

ProxyPass "/tmpfs" "http://xxx.selfhost.eu:59677/tmpfs" disablereuse=On