Squid でプロキシサーバーを立てるには?

ショコラ
ショコラ

Squid でプロキシサーバーを立てるには?

「sameersbn/squid:3.3.8-23」のドッカーイメージでキメマス。

もっさん先輩
もっさん先輩
docker run --rm --name squid -p 3128:3128 sameersbn/squid:3.3.8-23

この squid:3.3.8-23 は一発でプロキシサーバーになります。

cURL でプロキシの動作確認をしてみましょう。

curl https://answorz.com --proxy http://localhost:3128

設定はこちらですね。squid:3.3.8-23 が一発でプロクシになるわけです。

# 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 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
acl localnet src fe80::/10      # RFC 4291 link-local (directly plugged) machines

acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl CONNECT method CONNECT
docker run --rm --name squid -p 3128:3128 -v /home/mossan/squid3:/etc/squid3 -d sameersbn/squid:3.3.8-23

以上

Scroll to Top