奶牛启用https后发现还是在http和https共存的时候出现一些小问题,遂决定使用Nginx强制跳转https。
vim /usr/local/nginx/conf/vhost/nenew.net.conf
在配置文件的listen 80这段中插入语句
rewrite ^(.*)$ https://www.nenew.net$1 permanent;
然后重启Nginx即可。
以goagent的代理设置为例吧
export http_proxy="http://127.0.0.1:8087" export https_proxy="http://127.0.0.1:8087"
这样子git bash的http和https访问都会走代理了,但是可能会涉及到https证书错误的问题,出现错误提示SSL certificate problem: unable to get local issuer certificate
git config --global http.sslVerify false