Hi All,
I'm trying to use the httpd_accell to to allow squid to proxy an
internal web server on the internet. Currently my squid.conf is set up
like this:-
acl our_networks src 192.168.5.0/24 192.168.3.0/24
http_access allow our_networks
cache_access_log none
cache_store_log none
visible_hostname proxy
acl accesses_to_apps dstdomain 192.168.3.101 proxy
http_access allow accesses_to_apps !our_networks
#Reverse Proxy
http_port 80
httpd_accel_host 192.168.3.101
httpd_accel_port 80
httpd_accel_single_host on
httpd_accel_with_proxy on
httpd_accel_uses_host_header off
But whenever I try to access the page "http://proxy"
While trying to retrieve the URL: 192.168.3.101
The following error was encountered:
* *Access Denied. *
Access control configuration prevents your request from being
allowed at this time. Please contact your service provider if you
feel this is incorrect
What acls am I missing? Basically I allowed dstdomain the IP of the
internal webserver and the proxy server (hostname proxy)... I'm guessing
I'm missing something here...
Thanks!