apache的错误消息还是很不准确的,只能说沾点边

    ProxyPass / balancer://mycluster
    ProxyPassReverse / balancer://mycluster


看上去没什么错误,但是实际上有问题,抛出这样的错误:

[warn] proxy: No protocol handler was valid for the URL /admin/login_form. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.

返回403错误

看上去特别奇怪,实际上要改成这样
    ProxyPass / balancer://mycluster/
    ProxyPassReverse / balancer://mycluster/


看出来了吧,少了一个/,这个非常重要,在拼url的时候少这个不行的。

你可能感兴趣的:(apache)