当前位置:   article > 正文

MAC终端代理设置_mac http_proxy

mac http_proxy

移动开发有时需要设置代理,不然太慢。

 

在终端中输代码即可显示隐藏文件。

defaults write com.apple.finder AppleShowAllFiles -boolean true;killall Finder

 

再次隐藏文件,可以输入命令。

defaults write com.apple.finder AppleShowAllFiles -boolean false;killall Finder

1. 进入当前用户的home目录:

cd ~/

2. 创建.bash_profile文件:或者.zshrc文件

touch .bash_profile
touch .zshrc

3. 打开.bash_profile并编辑:或者打开编辑.zshrc

open .bash_profile
open .zshrc

4. 这样就打开了一个记事本,会显示你之前配置过的path,修改记事本,强烈建议先备份下,然后根据自己需要配置。

在~/.bash_profile 文件中(此文件可能没有,没有就创建一个)添加如下代码

其中的 http_proxy 是ss自己设置的本地代理,不是我们买的外面的代理地址,一般都是如下面代码所示,一般不用改。

端口的话 有可能不是1087,这个要看本地服务的HTTP代理端口了

 

 

  1. function proxy_off(){
  2. unset http_proxy
  3. unset https_proxy
  4. unset ftp_proxy
  5. unset rsync_proxy
  6. echo -e "已关闭代理"
  7. curl cip.cc
  8. }
  9. function proxy_on() {
  10. export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
  11. export http_proxy="http://127.0.0.1:1080"
  12. export https_proxy=$http_proxy
  13. export ftp_proxy=$http_proxy
  14. export rsync_proxy=$http_proxy
  15. export HTTP_PROXY=$http_proxy
  16. export HTTPS_PROXY=$http_proxy
  17. export FTP_PROXY=$http_proxy
  18. export RSYNC_PROXY=$http_proxy
  19. echo -e "已开启代理"
  20. curl cip.cc
  21. }
  22. source ~/.bash_profile

 

然后执行source ~/.bash_profile  使其立刻生效

使用时需要打开ss全局模式,然后打开终端

只需要输入proxy_on就会启动

 

判断终端是否走了代理服务器的方法

curl cip.cc

开启代理:

proxy_on

 

关闭代理:

proxy_off

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/244883
推荐阅读
相关标签
  

闽ICP备14008679号