Windows下安裝squid的步驟詳解
更新時間:2012年09月29日 00:40:18 作者:
squid軟件一般常用于代理中,也是最常見的代理軟件,在linux下配置squid以前已經(jīng)說過了,下面介紹下Windows下安裝squid已經(jīng)配置的詳細方法
一.下載squid for windows
下載地址:
http://www.acmeconsulting.it/SquidNT.html
http://www.dbjr.com.cn/softs/43599.html
二.Windows下安裝squid與配置
1.解壓squid-2.6.STABLE6-NT-bin.zip到C:\squid
2.單擊[開始],選擇“運行”,輸入 cmd ,在命令提示符窗口內(nèi)輸入以下命令:
C:\>cd c:\squid\etc
C:\squid\etc>copy squid.conf.default squid.conf
**將Squid的默認配置文件復(fù)制一份并起名為squid.conf
C:\squid\etc>copy mime.conf.default mime.conf
**將mime.conf.default復(fù)制一份并起名為mime.conf
3.編輯squid.conf,根據(jù)需要添加和修改以下內(nèi)容
http_port 3128 ;定義squid監(jiān)聽端口
visible_hostname tianwei-itrus :定義機器名
cache_mem 64 MB ;定義代理服務(wù)器緩存
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 :定義本地網(wǎng)絡(luò)為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的服務(wù))
C:\squid\sbin>squid -z (生成高速緩存的目錄)
C:\squid\sbin>squid
下載地址:
http://www.acmeconsulting.it/SquidNT.html
http://www.dbjr.com.cn/softs/43599.html
二.Windows下安裝squid與配置
1.解壓squid-2.6.STABLE6-NT-bin.zip到C:\squid
2.單擊[開始],選擇“運行”,輸入 cmd ,在命令提示符窗口內(nèi)輸入以下命令:
C:\>cd c:\squid\etc
C:\squid\etc>copy squid.conf.default squid.conf
**將Squid的默認配置文件復(fù)制一份并起名為squid.conf
C:\squid\etc>copy mime.conf.default mime.conf
**將mime.conf.default復(fù)制一份并起名為mime.conf
3.編輯squid.conf,根據(jù)需要添加和修改以下內(nèi)容
http_port 3128 ;定義squid監(jiān)聽端口
visible_hostname tianwei-itrus :定義機器名
cache_mem 64 MB ;定義代理服務(wù)器緩存
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 :定義本地網(wǎng)絡(luò)為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的服務(wù))
C:\squid\sbin>squid -z (生成高速緩存的目錄)
C:\squid\sbin>squid
相關(guān)文章
ISAPI Rewrite iis偽靜態(tài)組件最新教程
自從把網(wǎng)站從Apache遷移到IIS,就開始不斷地折騰Joomla和WordPress的靜態(tài)化的問題,最終還是ISAPI Rewrite解決了所有問題,如果你有類似問題,希望這篇教程能對你有所幫助。2010-08-08cwrsync server 服務(wù)啟動失敗的解決方法小結(jié)
因為服務(wù)器用cwrsync用來同步數(shù)據(jù),有時候連接不上的時候,到服務(wù)器上查看cwrsync server停止了,啟動時就提示啟動失敗2012-06-06WordPress升級版本及安裝插件出現(xiàn)”Problem with the SSL CA cert”的解決辦法
最近有很多很有在使用WordPress升級版本及安裝插件時總是提示Problem with the SSL CA cert的問題,如何解決呢?下面小編把我的解決辦法分享給大家,需要的朋友可以參考下2015-10-10服務(wù)器安裝conda環(huán)境遇到代理PROXY問題及解決方案
這篇文章主要為大家介紹了服務(wù)器安裝conda環(huán)境遇到代理PROXY問題及解決方案,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-07-07memcached常用命令_動力節(jié)點Java學(xué)院整理
這篇文章主要介紹了memcached常用命令,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-08-08jenkins插件pipeline集成持續(xù)交付管道全面介紹
這篇文章主要就jenkins插件pipeline集成持續(xù)交付管道相關(guān)內(nèi)容做一個全面介紹,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步2022-03-03