如何将请求从 Apache 服务器重定向到本地瘦 Web 服务器?

如何将请求从 Apache 服务器重定向到本地瘦 Web 服务器?

我正在尝试潇洒的糖衣目前,我已经在本地启动并运行了所有东西,但我还无法通过 apache-webserver 上的反向代理从网络上的另一台计算机打开仪表板。我对这个主题还不太熟悉,需要一些帮助才能找到正确httpd.conf的答案,相关部分目前如下所示:

<VirtualHost *:80>
ServerName dummy-server-name.needhelp.de
Redirect / https://dummy-server-name.needhelp.de/

ProxyPass /dashing-icinga https://dummy-server-name.needhelp.de:8005/dashing-icinga
ProxyPassReverse /dashing-icinga https://dummy-server-name.needhelp.de:8005/dashing-icinga

瘦服务器正在监听Port 8005,但重新启动httpd.service并打开后dummy-server-name.needhelp.de/dashing-icinga,我被重定向到“未找到页面”的默认页面。

任何帮助都值得感激,如果您需要更多信息或我的配置文件的不同部分,请告诉我。

编辑1

当尝试连接到时dummy-server-name.needhelp.de/dashing-icinga,apache-server 会将以下内容记录到error_log

[proxy:error] [pid 172145] (13)Permission denied: AH00957: HTTPS: attempt to connect to 127.0.0.1:8005 (localhost) failed

答案1

维修

ProxyPass /dashing-icinga https://dummy-server-name.needhelp.de:8005/dashing-icinga

ProxyPass /dashing-icinga http://dummy-server-name.needhelp.de:8005/dashing-icinga

或者如果 inciga 仅在本地主机上监听

ProxyPass /dashing-icinga http://127.0.0.1:8005/dashing-icinga

相关内容