-
Step 1
Open the httpd.conf file in a text editor. Linux/Unix users will find this file at "/etc/httpd/httpd.conf." Windows users will find this file at "C:\Program Files\Apache Group\Apache2\conf\httpd.conf."
-
Step 2
Add the lines "LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so" and "LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so" in the LoadModule directive section. This will load the appropriate mod_proxy modules. Change the path to the .so files to reflect your system.
-
Step 3
Type the following lines in the main section of the configuration file:
ProxyRequests On
ProxyVia On
<Proxy *>
Order deny,allow
Deny from all
Allow from internal.example.com
</Proxy>
This will create a Forward Proxy. -
Step 4
Save and close the httpd.conf file.
-
Step 5
Restart the Apache server.








