How to create a proxy server

ARUN Posted in Proxy
0

Install squid

yum install squid

/scripts/easyapache

Enable apache mudule    “Proxy”

vi /etc/squid/squid.conf

 

How to configure mod_proxy in cpanel server

ARUN Posted in HTTPD, Proxy, WHM BACKEND
0

You can enable mod_proxy using easy apache.

To allow a specif IP address only to access that proxy use the below in httpd.conf

<IfModule mod_proxy.c>
ProxyRequests On
<Proxy *>
Order deny,allow
Deny from all
Allow from YOUR_IP_ADDRESS<— Added for testing purpose
Allow from YOUR_IP_ADDRESS <— Added for testing purpose
Allow from YOUR_IP_ADDRESS
</Proxy>
ProxyVia On
</IfModule>