Windows下安装squid的步骤详解
更新时间:2012年09月29日 00:40:18 作者:
squid软件一般常用于代理中,也是最常见的代理软件,在linux下配置squid以前已经说过了,下面介绍下Windows下安装squid已经配置的详细方法
一.下载squid for windows
下载地址:
http://www.acmeconsulting.it/SquidNT.html
https://www.jb51.net/softs/43599.html
二.Windows下安装squid与配置
1.解压squid-2.6.STABLE6-NT-bin.zip到C:\squid
2.单击[开始],选择“运行”,输入 cmd ,在命令提示符窗口内输入以下命令:
C:\>cd c:\squid\etc
C:\squid\etc>copy squid.conf.default squid.conf
**将Squid的默认配置文件复制一份并起名为squid.conf
C:\squid\etc>copy mime.conf.default mime.conf
**将mime.conf.default复制一份并起名为mime.conf
3.编辑squid.conf,根据需要添加和修改以下内容
http_port 3128 ;定义squid监听端口
visible_hostname tianwei-itrus :定义机器名
cache_mem 64 MB ;定义代理服务器缓存
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255 :定义本地网络为localhost
acl outnetwork 192.168.10.0/255.255.255.0
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 1863 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow localhost manager
http_access allow outnetwork
icp_access allow all
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_reply_access allow all
icp_access allow all
http_access deny all
三.Windows下安装squid完成后,启动squid
c:\>cd c:\squid\sbin
C:\squid\sbin>squid -i (注册Squid为Windows的服务)
C:\squid\sbin>squid -z (生成高速缓存的目录)
C:\squid\sbin>squid
下载地址:
http://www.acmeconsulting.it/SquidNT.html
https://www.jb51.net/softs/43599.html
二.Windows下安装squid与配置
1.解压squid-2.6.STABLE6-NT-bin.zip到C:\squid
2.单击[开始],选择“运行”,输入 cmd ,在命令提示符窗口内输入以下命令:
C:\>cd c:\squid\etc
C:\squid\etc>copy squid.conf.default squid.conf
**将Squid的默认配置文件复制一份并起名为squid.conf
C:\squid\etc>copy mime.conf.default mime.conf
**将mime.conf.default复制一份并起名为mime.conf
3.编辑squid.conf,根据需要添加和修改以下内容
http_port 3128 ;定义squid监听端口
visible_hostname tianwei-itrus :定义机器名
cache_mem 64 MB ;定义代理服务器缓存
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255 :定义本地网络为localhost
acl outnetwork 192.168.10.0/255.255.255.0
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 1863 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
http_access allow localhost manager
http_access allow outnetwork
icp_access allow all
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_reply_access allow all
icp_access allow all
http_access deny all
三.Windows下安装squid完成后,启动squid
c:\>cd c:\squid\sbin
C:\squid\sbin>squid -i (注册Squid为Windows的服务)
C:\squid\sbin>squid -z (生成高速缓存的目录)
C:\squid\sbin>squid
相关文章
开启OCSP提升https证书验证效率解决Let’s Encrypt SSL证书访问慢的问题
这篇文章主要介绍了Apache、Nginx开启OCSP提升https证书验证效率解决Let’s Encrypt SSL证书访问慢的问题,需要的朋友可以参考下2020-11-11
HTTP 错误 403.1禁止访问:禁止执行访问的完美解决方法
这篇文章主要介绍了HTTP 错误 403.1禁止访问:禁止执行访问的完美解决方法,需要的朋友可以参考下2016-11-11
配置Memcache服务器并实现主从复制功能(repcached)
repcached是日本人开发的实现memcached复制功能,它是一个单 master单 slave的方案,但它的 master/slave都是可读写的,而且可以相互同步,如果 master坏掉, slave侦测到连接断了,它会自动 listen而成为 master2012-03-03


最新评论