以as4.0+为例 1、首先根据gradle-wrapper.properties下载对应的版本 下载完之后在setting中配置gradle路径 2、配置http proxy 这里我使用mirrors.neusoft.edu.cn地址,如图 ...
分类:
移动开发 时间:
2020-11-21 12:02:56
阅读次数:
45
IDEA Plugins的Marketplace搜索不到插件解决办法 打开:设置-Appearance&Behavior-System Setting - HTTP Proxy 在右侧选择使用代理,使用动态代理位置打勾,点击Apply 重启IDEA 可以正常搜索插件👇 ...
分类:
其他好文 时间:
2020-11-18 12:28:22
阅读次数:
5
1.nginx缓存原理及配置 nginx的http_proxy模块,可以 实现类似于 squid的 缓存功能。 代理缓存 配置语法 配置语法:proxy_cache语法 Syntax: proxy_cache zone |off Default: proxy_cache off Cotext: ht ...
分类:
其他好文 时间:
2020-10-22 22:21:54
阅读次数:
20
操作 添加 /etc/docker/env 文件 export HTTP_PROXY=127.0.0.1:8899 编辑 /etc/init/pkg-Docker-dockerd.conf 文件 exec /var/packages/Docker/target/usr/bin/dockerd --c ...
分类:
Web程序 时间:
2020-10-09 21:38:29
阅读次数:
47
国内 Centos 7 安装 oh my zsh 起因 最开始是因为想安装 oh my zsh 这个超级终端,因为众所周知的原因,使用命令行没成功安装。 因为 Centos 是安装在虚拟机的,而且网络使用 NAT 方式连接到外网。 解决过程 最开始是想使用 http_proxy https_prox ...
分类:
其他好文 时间:
2020-09-17 23:29:21
阅读次数:
39
一、永久设置 编辑配置文件 vi /etc/profile 在文件后添加以下内容: export http_proxy=’http://代理服务器IP:端口号’ export https_proxy=’http://代理服务器IP:端口号’ 然后使用source /etc/profile使设置立即生 ...
分类:
其他好文 时间:
2020-08-11 13:08:15
阅读次数:
188
1,apt 创建:/etc/apt/apt.conf.d/proxy.conf 内容: Acquire::http::Proxy "http://username:password@ip地址或网址:8080/"; Acquire::https::Proxy "http://username:pass ...
分类:
系统相关 时间:
2020-08-08 17:40:59
阅读次数:
66
默认模式:http代理 set http_proxy=http://127.0.0.1:7008 set https_proxy=http://127.0.0.1:7008 bash模式:sock5代理 export https_proxy=socks5://127.0.0.1:1080 expor... ...
分类:
其他好文 时间:
2020-08-06 09:19:42
阅读次数:
87
cmd,powershell,git-bash设置代理的方式是不一样的powershell 可以使用$env:https_proxy = "127.0.0.1:1080"$env:http_proxy = "127.0.0.1:1080"其它参考 https://zcdll.github.io/20... ...