Apache – proxy: No protocol handler was valid for the URL /. If you are using a DSO version of mod_proxy

apachePROXYproxypassvhostsvirtualhost

I have added ProxyPass in the virtual-host and end up with below error in the error.log file.

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

In the front end I get 500 when I request particular page.

How can I fix this error?

Best Answer

You need to enable proxy module :

a2enmod proxy_http
a2enmod proxy

And restart you Apache server.

service apache2 restart
Related Topic