Windows下安装squid的步骤详解

squid软件一般常用于代理中,也是最常见的代理软件,在linux下配置squid以前已经说过了,下面介绍下Windows下安装squid已经配置的详细方法
一.下载squid for windows

  下载地址:
http://www.acmeconsulting.it/SquidNT.html
http://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
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

今天写这篇教程目的在于分享自己在WINDOWS主机下配置squid的方法。哪些地方写的不完善或是不完整或是需要修改的地方,大家可以提出。我会第一时间纠正。下面看正文部分。
本文介绍Linux下非常著名、常用的Squid代理服务器的使用,并着重讲述如何使用其提供的访问控制策略,来保证代理服务器的合法使用。
Squid是一个高性能的代理缓存服务器,但缺点是网址是以明文的形式发送的。在我们的特殊互联网环境中,就算使用这样的代理服务器,打开网页时也常常会被“Reset”。
当前,LAMP开发模式是WEB开发的首选,如何搭建一个高效、可靠、稳定的WEB服务器一直是个热门主题,本文就是这个主题的一次尝试。
以下安装及配置均为Sudu所在公司应用中使用的脚本,希望高手们能指正我的一些不足。如果测试过程中发现了问题请回复或者联系我。
前面总结了 基于Xen的VPS的web服务器的配置:ubuntu+nginx+php,下面记录下squid服务器的配置。