To install the mod proxy follow the following steps
Quote:
cd /home/cpapachebuild/buildapache/apache_1.3.31/src/modules/proxy/
or
cd /home/cpeasyapache/src/httpd-2.0.63/modules/proxy
|
Then run command:
Quote:
|
/usr/local/apache/bin/apxs -i -c *.c
|
Add the following module to the httpd.conf to load proxy module with the httpd configuration file:
Quote:
|
LoadModule proxy_module libexec/mod_proxy.so
|
There is no need to add module in httpd.conf if you are not sure where it in need to add on httpd.conf file because mod_proxy has been created and saved into the libexec directory.
Restart the Apache service:
Quote:
service httpd restart
or
/etc/init.d/httpd restart
|
To confirm proxy module installed or not? on your server by using following command.
Quote:
|
/usr/local/apache/bin/httpd -l | grep proxy
|