alias proxy='export http_proxy=socks5://127.0.0.1:1080; export https_proxy=socks5://127.0.0.1:1080' alias unproxy='unset http_proxy; unset https_proxy... ...
分类:
其他好文 时间:
2018-04-17 13:10:53
阅读次数:
178
1、proxy_pass URL;Context:location, if in location, limit_except注意:proxy_pass后面路径不带uri时,会将location的uri传递(附加)给后端主机server {
...
server_name HOSTN
分类:
Web程序 时间:
2018-03-29 17:24:26
阅读次数:
273
android studio 打开项目出现以下错误时,点击去安装,会提示“All packages are not available for download” 错误。 解决办法是: 打开 Tools Android Sdk Manager System Settings Http Proxy, ...
分类:
移动开发 时间:
2018-03-20 18:12:19
阅读次数:
306
ngx_http_proxy_module模块;ngx_http_headers_module模块;ngx_http_fastcgi_module模块;#实验:实现基础的动静分离;#实现后端服务器记录客户端ip信息;#实验:设置代理服务器缓存功能
分类:
系统相关 时间:
2018-03-18 21:37:03
阅读次数:
335
server { listen 80; server_name wechat.xxx.xx; location / { proxy_pass http://127.0.0.1:10000; proxy_set_header X-Real-IP $remote_addr; }}ssh wechat.x ...
分类:
其他好文 时间:
2018-03-09 14:08:48
阅读次数:
169
在日常测试工作中,经常需要测试前端数据正确性,或帮助开发人员定位问题,这样就需要抓包检查接口返回数据。在WEB页面可以使用F12来进行抓包,但app端则需要其他辅助工具帮忙,例如Charles和Fiddler,这一类代理服务器。 Charles is an HTTP proxy / HTTP mon ...
分类:
其他好文 时间:
2018-03-02 23:15:35
阅读次数:
203
服务器无法上网,然后自己根据光盘搭建的YUM源不够用。RPM安装软件,各种依赖,找包烦死. 先做个 能上外网的 http proxy 找一个可以上Internet的服务器,然后起一个squid服务, 要访问Internet的服务器上 export http_proxy=http://xxxxx:xx ...
分类:
其他好文 时间:
2018-02-09 15:06:01
阅读次数:
138
Selenium Server, 负责启动和关闭浏览器,以及解释和运行从测试程序传送过来的Selenese指令,并充当HTTP Proxy角色。
分类:
其他好文 时间:
2018-01-13 15:44:09
阅读次数:
142
==================================server{listen443;server_namefarm.gz.1252039095.clb.myqcloud.com;sslon;ssl_certificate/etc/pki/tls/certs/1_farm.gz.1252039095.clb.myqcloud.com_bundle.crt;ssl_certifica
分类:
Web程序 时间:
2018-01-09 18:47:24
阅读次数:
165
熟练掌握Nginx负载均衡的使用对运维人员来说是极其重要的!下面针对Nignx负载均衡upstream容错机制的使用做一梳理性说明: 一、nginx的upstream容错 1)nginx 判断节点失效状态Nginx默认判断失败节点状态以connect refuse和time out状态为准,不以HT ...
分类:
Web程序 时间:
2018-01-03 21:09:10
阅读次数:
259