Apache2 和 Cloudflare - 子域名到端口 (使用 ProxyPass)

Apache2 和 Cloudflare - 子域名到端口 (使用 ProxyPass)

我就是找不到错误...需要你的帮助。抱歉我的英语不好。

我的apache2配置:

<VirtualHost *:80>
ServerAdmin [email protected]
ServerName citybuild.bl4cklist.de
ProxyPreserveHost On

# setup the proxy
ProxyPass / http://localhost:8123
ProxyPassReverse / http://localhost:8123

子域名有效,但我收到 503 错误。

点击这里观看直播:citybuild.bl4cklist.de

我该怎么办?真实目录位于“8123”端口上。我使用 Dynmap 进行 Minecraft 并尝试在子域上使用地图。

答案1

其已修复。

/我必须在 proxpass 的末尾设置一个并反转。

<VirtualHost *:80>
ServerAdmin [email protected]
ServerName citybuild.bl4cklist.de
ProxyPreserveHost On

# setup the proxy
ProxyPass / http://localhost:8123/
ProxyPassReverse / http://localhost:8123/
</VirtualHost>

相关内容