要将域名解析到 IP
Certbot
apt update
apt install certbot python3-certbot-nginx
certbot --nginx -d mydreamforest.com
certbot renew --dry-run
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
systemctl enable certbot.service
systemctl start certbot.service
事前,在 DNS 中解析 A 记录是必要的。
安装 Certbot 时询问是否需要 HTTP 重定向,请拒绝,它会更改你的 Nginx 配置。我们会在之后手动配置它。
SSL 证书针对域名起作用,多加注意。
除了证书所在文件,/etc/nginx/sites-available/default
中也储存有证书的路径。
通配域名,仅相当于域名下降一级。
ACME (Automatic Certificate Management Environment) 客户端是指自动申请和更新 SSL/TLS 数字证书的软件工具。
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