diff options
author | Philip Hands <phil@hands.com> | 2016-05-12 14:51:09 +0200 |
---|---|---|
committer | Philip Hands <phil@hands.com> | 2016-05-12 14:51:09 +0200 |
commit | 0079ac5cf5c6f1826961f23c49085175916b6cff (patch) | |
tree | 24c02f28b4a5a49c7d20b0f6f7fc11dd472891d2 /hosts/jenkins | |
parent | a097201c33d8573b1cc2f9a153df708d01fa3c98 (diff) | |
download | jenkins.debian.net-0079ac5cf5c6f1826961f23c49085175916b6cff.tar.xz |
allow cucumber VMs access via squid (assuming they're on 10.x.x.x
Diffstat (limited to 'hosts/jenkins')
-rw-r--r-- | hosts/jenkins/etc/squid3/squid.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/jenkins/etc/squid3/squid.conf b/hosts/jenkins/etc/squid3/squid.conf index d7b6fabe..d3a0a7f1 100644 --- a/hosts/jenkins/etc/squid3/squid.conf +++ b/hosts/jenkins/etc/squid3/squid.conf @@ -697,7 +697,7 @@ # Example rule allowing access from your local networks. # Adapt to list your (internal) IP networks from where browsing # should be allowed -#acl localnet src 10.0.0.0/8 # RFC1918 possible internal network +acl localnet src 10.0.0.0/8 # RFC1918 possible internal network #acl localnet src 172.16.0.0/12 # RFC1918 possible internal network #acl localnet src 192.168.0.0/16 # RFC1918 possible internal network #acl localnet src fc00::/7 # RFC 4193 local private network range @@ -837,7 +837,7 @@ http_access deny CONNECT !SSL_ports # Example rule allowing access from your local networks. # Adapt localnet in the ACL section to list your (internal) IP networks # from where browsing should be allowed -#http_access allow localnet +http_access allow localnet http_access allow localhost # And finally deny all other access to this proxy |