利用Squid + DNSPOD 搭建CDN服务器心得
3704 点击·0 回帖
![]() | ![]() | |
![]() | 我的个人网站 最近很多人反映访问速度很慢,后来我知道原来服务器一直搭建在铁通线路上,造成国内的电信线路用户有时候网页都打不开,所以闲暇时间我做了一个CND加速服务器,其实就是利用Squid + DNSPOD的方式实现南北电信互联互通。 PS:由于网站性质问题,在国内不能备案,现在已经迁往海外主机,不过我相信这篇文章应该能帮助到需要给自己网站加速的朋友们 :) 说名一下,主服务器IP为61.234.243.31为湖南铁通网络 因为中国网络问题,一些电信用户访问速度较慢, 所以,我选择了用中国电信的光纤服务器做CDN,服务器IP为218.75.215.11 也就是 主服务器:61.234.243.31 CDN服务器:218.75.215.11 首先下载squid for windows安装包 squid-2.7.STABLE5-bin.zip 然后解压缩,放到C盘squid目录内. 进入目录C 180 20% 10080 override-expire ignore-reload reload-into-ims refresh_pattern . 120 50% 1440 acl all src 0.0.0.0/0.0.0.0 acl p-manager proto cache_object acl s-localhost src 127.0.0.1/255.255.255.255 acl d-localhost dst 127.0.0.0/8 acl d-domains dstdomain .game1988.com acl d-domains dstdomain acl p-ssl port 443 563 acl p-safe port 80 443 563 acl m-conn method CONNECT acl m-purge method PURGE acl n-maxconn maxconn 15 http_access allow p-manager s-localhost http_access allow m-purge http_access allow !p-safe http_access deny m-conn !p-ssl http_access deny n-maxconn http_access allow p-manager http_access allow d-domains http_access allow all http_reply_access allow all acl r-url urlpath_regex realtime cache deny r-url icp_access allow all follow_x_forwarded_for allow all acl_uses_indirect_client offrange_offset_limit -1 dns_timeout 2 seconds forward_timeout 10 seconds connect_timeout 10 seconds peer_connect_timeout 6 seconds read_timeout 10 seconds request_timeout 6 seconds persistent_request_timeout 16 seconds cache_mgr atcpu@163.com cache_effective_user nobody cache_effective_group nobody visible_hostname logfile_rotate 0 always_direct allow all #error_directory /usr/local/squid/share/errors/Simplify_Chinese coredump_dir c:/squid/var/cache access_log c:/squid/var/logs/access.log squid cache_log c:/squid/var/logs/cache.log cache_store_log c:/squid/var/logs/store.log 打开目录cquidvar 新建两个目录,分别为cache和logs 打开CMD,进入cquidsbin目录,执行squid -i 将SQLUID写入服务项 初始化cache目录squid -z 如果配置文件出错的话,初始化cache目录将会出错。 关闭或禁用IIS 在服务里面运行squid ———–到这里,squid部分就搭建成功了 下面开始做域名解析. 打开目录C:WINDOWSsystem32driversetc 用记事本打开hosts编辑并保存 61.234.243.31 www.atcpu.com DNSpod大家都会用啦, 把域名NS服务器换到DNSpod上来 然后将电信IP指向61.234.243.31 将网通IP指向218.75.215.11 等A记录生效…….. 生效后,首次打开网站速度可能会慢,或者出错吧,二次访问后速度就会飞快啦,呼呼~~~ | |
![]() | ![]() |