nginx模块的应用 ngx_http_proxy_modulenginx 反向代理模块: http://nginx.org/en/docs/http/ngx_http_proxy_module.html server { listen server_name location / { proxy_ ...
分类:
其他好文 时间:
2018-11-11 00:55:49
阅读次数:
180
JS或css无法完全加载 nginx的代理缓存区,默认较小导致部分文件出现加载不全的问题,比较典型的如jQuery框架,可以通过配置调整nginx的缓存区即可。主要参考proxy参数 最终完整配置如下: http { # http_proxy proxy_buffer_size 128k; prox ...
分类:
Web程序 时间:
2018-11-09 19:22:27
阅读次数:
159
nginx目前主要用来做反向代理和负载均衡,其实它也可以是一个web服务器; 1、反向代理: location /api/ { proxy_next_upstream error timeout http_503 http_502 http_504; proxy_pass http://myweb1 ...
分类:
其他好文 时间:
2018-11-08 01:14:47
阅读次数:
250
Gralde 网络代理 Gradle在编译项目的时候,需要下载一些依赖。墙外的网络就需要设置代理了。 设置的方法,见文档: Accessing the web through a HTTP proxy 这一段配置,放在gradle.properties文件中。 ...
分类:
其他好文 时间:
2018-10-23 20:59:07
阅读次数:
121
前言正向代理,是指内网用户设置代理服务器的IP及端口实现访问公网的访问方式(https://baike.baidu.com/item/正向代理/9524799)nginx自带的proxy也可以实现正向代理功能,但是不支持https,所以我选用了ngx_http_proxy_connect_module模块添加ngx_http_prox
分类:
Web程序 时间:
2018-10-19 17:39:02
阅读次数:
729
修改anaconda的配置文件,位置在c:\User(或“用户”)\current_user(当前用户)\.condarc,将以下内容拷贝进去, 替换原有内容, 修改 http://proxy.yourorg.org:port 为本地的代理地址: 另外,如果是pip的话,只需要在安装包的时候用如下格 ...
分类:
其他好文 时间:
2018-10-16 13:37:00
阅读次数:
2279
两种方法: 一。参考: https://blog.csdn.net/u010165004/article/details/45227019 打开Android SDK Manager,在Tools下的 Options 里面,在「HTTP Proxy Server」和「HTTP Proxy Port」 ...
分类:
其他好文 时间:
2018-10-04 11:33:01
阅读次数:
407
http://e-proxy.yfb.sunline.cn/download/vagrant/centos72-2.0.22.box 导入命令(管理员权限打开cmd控制台): vagrant box add 别名 box所在文件路径 如:vagrant box add centos72-2.0.22 ...
分类:
其他好文 时间:
2018-09-04 18:58:32
阅读次数:
194
1、下载不下来sdk 最终用的sdktools,将镜像改为其他地方的的镜像,下载下来 在「HTTP Proxy Server」和「HTTP Proxy Port」输入框内填入 mirrors.neusoft.edu.cn 和 80,并且选中「Force https://... sources to ...
分类:
其他好文 时间:
2018-08-18 11:32:41
阅读次数:
171
node express http-proxy-middleware 跨域 代理服务器 ...
分类:
Web程序 时间:
2018-08-09 14:58:13
阅读次数:
448