在 Debian 上使用 Squid,无法连接错误

在 Debian 上使用 Squid,无法连接错误

我正在尝试在 Debian 上设置 Squid,但收到连接被拒绝错误:

squidclient http://www.apple.com/ > test
client: ERROR: Cannot connect to 127.0.0.1:3128: Connection refused

这是我的配置:

visible_hostname none

cache_effective_user proxy
cache_effective_group proxy

cache_dir ufs /var/spool/squid 2048 16 256
cache_mem 512 MB

cache_access_log /var/log/squid/access.log

emulate_httpd_log on

strip_query_terms off
read_ahead_gap 128 Kb

collapsed_forwarding on
refresh_stale_hit 30 seconds

retry_on_error on

maximum_object_size_in_memory 1 MB

acl all src 0.0.0.0/0.0.0.0
acl purgehosts src 127.0.0.1/255.255.255.255

# Caching static objects in __data is important.
# Without that, apache processes sit around spooling static objects.
acl QUERY urlpath_regex /cgi-bin/ /_edit /_admin /_login /_nocache /_recache /__lib /__fudge
acl PURGE method PURGE
acl POST method POST

cache deny QUERY
cache deny POST

http_access allow PURGE purgehosts
http_access deny PURGE
http_access allow all

http_port 127.0.0.1:80
http_port 50.56.206.139:80
cache_peer 127.0.0.1 parent 80 0 originserver no-query no-digest default

redirect_rewrites_host_header off

read_ahead_gap 128 Kb

shutdown_lifetime 5 seconds

知道为什么会发生这种情况吗?我错过了什么?

答案1

http_port 127.0.0.1:3128您的配置中没有。

编辑:看起来您需要反向代理/http 加速器配置。在这种情况下,不要使用 squid 进行测试squidclient http://www.apple.com/- 尝试使用普通浏览器访问您的网页或使用 wget 之类的工具。

http://wiki.squid-cache.org/SquidFaq/ReverseProxy了解一些信息。

我没有使用过 squid 中的这种模式,但请删除 http_port 并重http_port 50.56.206.139:80 accel defaultsite=your.main.website试。

答案2

相关内容