专注 K8S研究
发布时间:2018-09-05 20:15:02
安装 nginx 1.11.5 以上的 mainline 版本。在 /etc/nginx.conf 的 顶部结构里粘贴如下语句:......【阅读全文】
发布时间:2018-09-05 19:29:31
nginx同样可以实现代理上网的功能,配置如下: user www;worker_processes 1;error_log /var/log/nginx/error.log debug; events { use epoll; worker_connections 1024;} http { resolver 8.8.8.8; server { listen 8088; location / { proxy_pass http://$http_h.........【阅读全文】
发布时间:2018-09-05 19:03:36
# Recommended minimum configuration:# Adapt to list your (internal) IP networks from where browsingacl localnet src 10.0.0.0/8 # RFC1918 possible internal networkacl localnet src 192.168.0.0/24# RFC1918 possible internal networkac.........【阅读全文】
发布时间:2018-09-05 18:58:20
#vi /etc/squid/squid.conf#缓存目录的设置,可以设置多个缓存目录,语法为:<cache_dir> <aufs|ufs> <目录所在> <MBytes大小> <dir1> <dir2>cache_dir ufs /var/spool/squid 1000 64 1024#关闭认证机制,有些版本的 squid 会自动的加入代理认证机制,而普通情况下是不需要的,故找到包括auth_param的行,给它.........【阅读全文】
发布时间:2018-09-05 18:49:03
查看系统是64位还是32位:> [root@localhost ~]# getconf LONG_BIT > 3212 Squid是一个单进程的异步代理缓存服务器,支持HTTP,FTP,GOPHER,ICP等协议。通过配置,可以实现反向代理、透明代理的功能,并且支持缓存,是实现高性能网站的必备基础设施之一;当前我主要研究透明代理者部.........【阅读全文】