squid 2.6 反向代理配置

http_port 192.168.1.233:80 defaultsite=192.168.1.150 vhost vport=80
cache_peer 192.168.1.150 parent 80 0 no-query originserver
cache_peer 192.168.1.233 parent 100 0 no-query originserver
cache_peer_domain 192.168.1.150 www.xx.cn
cache_peer_domain 192.168.1.233 www.aa.cn

acl all src 0.0.0.0/0.0.0.0
acl Safe_ports port 80
acl Safe_ports port 443
http_access deny !Safe_ports
http_access allow all


refresh_pattern -i .  0 100% 0 reload-into-ims

只有一个IP,但是有几台机器要发布到internet上,便想起用squid来做个反向代理,只是起转发请求的作用,不缓存东西。

你可能感兴趣的:(apache,linux,.net,cache,Access)