Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 556
Techie Avatar asked Oct 07 '14 04:10

Techie


1 Answers

You need to enable proxy module :

a2enmod proxy_http
a2enmod proxy

And restart you Apache server.

service apache2 restart
like image 199
Techie Avatar answered Sep 17 '22 14:09

Techie