要将域名解析到 IP

申请官方证书

Certbot

apt update
  1. 安装 Certbot
apt install certbot python3-certbot-nginx
  1. 为域名申请证书
certbot --nginx -d mydreamforest.com

自动续订证书

  1. 测试 Certbot 是否能够成功续订证书:
certbot renew --dry-run
  1. 创建自动续期的服务文件
vi /etc/systemd/system/certbot.service
[Unit]
Description=Certbot
After=network.target

[Service]
Type=oneshot
ExecStart=/usr/bin/certbot renew --post-hook "systemctl reload nginx"

[Install]
WantedBy=multi-user.target
  1. 启动它:
systemctl enable certbot.service
systemctl start certbot.service

附言

生成自签名证书

OpenSSH

mkdir /etc/couchdb/cert
cd /etc/couchdb/cert
openssl genrsa > privkey.pem
openssl req -new -x509 -key privkey.pem -out couchdb.pem -days 1095
chmod 600 privkey.pem couchdb.pem
chown couchdb privkey.pem couchdb.pem