开源项目
一、docker-certbot-dnspod 使用 Docker 申请、续期免费证书
项目地址 https://github.com/chenlongqiang/docker-certbot-dnspod
近期免费证书有效期从 1 年缩短到 3 个月,避免经常要上云平台手动申请,所以想找个工具可以简单的申请、续期证书。通过了解,发现 Certbot 工具,但官方没提供 Dnspod 插件,于是找了 Python3 的封装并打包成 Docker 方便使用。
安装与使用步骤
1.clone 仓库
git@github.com:chenlongqiang/docker-certbot-dnspod.git
2.构建镜像
# 构建 Docker 镜像
cd docker-certbot-dnspod
docker build -t certbot-dnspod .
3.获取并填写 dnspod.ini 配置
在 https://console.dnspod.cn/account/token/token 进行 DNSPod Token 秘钥创建。
4.使用
# 申请新证书,执行后会进行命令行交互,填写完信息后将在 certs 目录下生成申请成功的证书
docker run -it --rm -v ./conf/dnspod.ini:/data/certbot/dnspod.ini -v ./certs:/etc/letsencrypt certbot-dnspod -d your_domain.com -d "*.your_domain.com"
# 续期 certs 目录下的证书
docker run -it --rm -v ./conf/dnspod.ini:/data/certbot/dnspod.ini -v ./certs:/etc/letsencrypt certbot-dnspod renew
certbot 相关参考资料
官方文档:https://eff-certbot.readthedocs.io/en/latest/install.html
官方 Github 仓库:https://github.com/certbot/certbot
Certbot Python3 封装:https://pypi.org/project/certbot-dnspod/
二、easy-short-url 短网址
项目地址 https://github.com/chenlongqiang/easy-short-url
演示
http://s.lukachen.com/web_admin
演示申请模版
跳转任意域名,可能造成法律风险,2021 年 1 月 1 日起,2.x 版本升级为授权使用
需使用 http://s.lukachen.com/web_admin 服务,请发邮件 365499684@qq.com 申请
经核对跳转域名合法,邮件回复授权码
特别说明:
我的短网址服务 s.lukachen.com
不对微信业务开放。因为微信分享不合适内容,易导致微信封禁域名,影响到他人使用- 使用本库自建服务,
自己决定跳转域名范围和使用场景
申请模版如下:
因 xxx 业务需求,要使用 s.lukachen.com 短链,要跳转的域名为
lukachen.com
google.com
baidu.com
API 示例
[方法] POST
[地址] http://s.lukachen.com/api_gen
[参数]
type: to_short 或 to_long
content: 要缩短或还原的网址
access_key: 公用 access_key 为 esu (默认已添加 lukachen.com 域名为合法跳转域,可用该域名的地址测试)
[curl示例]
curl -s -d "type=to_short&content=http://lukachen.com&access_key=esu" -X POST http://s.lukachen.com/api_gen
微博集成比较实用,单独没什么地方需要用。