我只是找不到错误..。需要你的帮助。为我的坏英国人道歉。
我的apache2-config:
<VirtualHost *:80>
ServerAdmin bl4cklistserver@gmail.com
ServerName citybuild.bl4cklist.de
ProxyPreserveHost On
# setup the proxy
ProxyPass / http://localhost:8123
ProxyPassReverse / http://localhost:8123子域工作,但我得到一个503错误。
看看这里的直播:citybuild.bl4cklist.de
我该怎么做?真正的目录位于"8123“端口上。我将Dynmap用于“我的世界”,并尝试在子域上使用该地图。
发布于 2019-09-19 14:22:28
它是固定的。
我必须在proxpass和反向的末尾设置一个/。
<VirtualHost *:80>
ServerAdmin bl4cklistserver@gmail.com
ServerName citybuild.bl4cklist.de
ProxyPreserveHost On
# setup the proxy
ProxyPass / http://localhost:8123/
ProxyPassReverse / http://localhost:8123/
</VirtualHost>https://serverfault.com/questions/984738
复制相似问题