我在mod_proxy和proxypass指令中出现以下错误:
我的vhost文件:
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
<VirtualHost *:80>
#ForensicLog logs/debuglog
ServerName updatefw.example.com
ServerAdmin support@example.com
ErrorLog logs/updatefw-error.log
CustomLog logs/updatefw-access_log common
ProxyPass / balancer://test
ProxyPassReverse / balancer://test
<Proxy balancer://test>
BalancerMember http://10.10.20.12:80
</Proxy>
</VirtualHost>
当我浏览updatefw.example.com时,我从索引文件中得到200:
[root@10.10.20.12 updatefw.example.com]# pwd
/var/www/vhosts/updatefw.example.com
[root@10.10.20.12 updatefw.example.com]# cat index.html
OK
然而,当我尝试浏览子目录中的文件时,我收到500错误:
http://updatefw.example.com/pepe/asdf.txt
/var/www/vhosts/updatefw.example.com/pepe
[root@10.10.20.12 pepe]# ls
asdf.txt
错误日志:
[Wed Apr 20 11:43:53.046606 2016] [proxy:warn] [pid 27551] [client 10.20.1.1:56553] AH01144: No protocol handler was valid for the URL /pepe/asdf.txt. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
我不知道因为我正在加载mod代理http模块会出现什么问题。 Brosing http://10.10.20.12/pepe/asdf.txt工作正常
有关于此的任何想法吗?
答案 0 :(得分:2)
解决了:
ProxyPass / balancer://test/
ProxyPassReverse / balancer://test/
需要一个/后面的平衡器名称。