改为HTTPS,cert is in: /root/.acme.sh/www.niunai.store_ecc/www.niunai.store.cer cert key is in: /root/.acme.sh/www.niunai.store_ecc/www.niunai.store.key CA cert is in: /root/.acme.sh/www.niunai.store_ecc/ca.cer certs is there: /root/.acme.sh/www.niunai.store_ecc/fullchain.cer这是证书路径
时间: 2023-06-25 13:05:36 浏览: 182
证书文件,cert.txt包含了制作的过程,下载下来解压就可以直接使用
好的,你可以按照以下步骤将证书配置到你的服务器上:
1. 将 `/root/.acme.sh/www.niunai.store_ecc/www.niunai.store.cer` 和 `/root/.acme.sh/www.niunai.store_ecc/www.niunai.store.key` 下载到你的服务器上,假设下载到了 `/etc/nginx/ssl` 目录下。
2. 在你的 Nginx 配置文件中增加以下内容:
```
server {
listen 443 ssl;
server_name yourdomain.com;
ssl_certificate /etc/nginx/ssl/www.niunai.store.cer;
ssl_certificate_key /etc/nginx/ssl/www.niunai.store.key;
# 其他 SSL 配置项
}
```
3. 重新加载 Nginx 配置文件,使之生效:
```
sudo service nginx reload
```
这样就可以使用 HTTPS 访问你的网站了。注意,为了保证 HTTPS 能够正常工作,你还需要确保你的服务器时间和证书的有效期是一致的。
阅读全文