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








