acme签发泛域名SSL证书
项目地址
https://github.com/acmesh-official/acme.sh
安装脚本
以 Linux 或者 MacOS 环境为例
curl https://get.acme.sh | sh -s email=your_email@xxx.com
如果连接不稳定,执行前 export 设置一下代理,科学上网:
一点浩然气,千里快哉风!
工具类软件
https://github.com/acmesh-official/acme.sh
以 Linux 或者 MacOS 环境为例
curl https://get.acme.sh | sh -s email=your_email@xxx.com
如果连接不稳定,执行前 export 设置一下代理,科学上网:
最近一直在使用一个没配置好的 git 服务器,读 key 文件的权限可能没有配置正确,导致我一直不能用 ssh 拉取和 push 代码,使用 http 的时候老要输密码,十分难受。多方寻找,发现了一种方法可以在使用 http 的时候免输密码,特此记录一下。
# 缓存中记住密码
git config --global credential.helper 'cache --timeout=6000'
# 永久存储密码
git config --global credential.helper store
这时候你的远程分支需要是这个样子的:
http://username:password@ip/name/code.git
配置一下远程分支,即可免密使用 git http,当然还是推荐使用 ssh key 认证的方式访问。