安装Certbot sudo snap install --classic certbot 使用以下命令确保可以通过创建指向/usr/bin目录的符号链接来运行Certbot命令。 sudo ln -s /snap/bin/certbot /usr/bin/certbot 验证Certbot是否正常运行。 $ certbot --version certbot 2.7.4 生成SSL证书。 sudo certbot certonly --nginx --agree-tos --no-ef...
Before updating your Nginx server, creating a backup of your current configurations is wise. To back up your mainnginx.conffile, use the following command: sudocp/etc/nginx/nginx.conf /etc/nginx/nginx-backup.conf In cases where you have extensively customized your Nginx setup, you might want ...
将Nginx服务器的Flarum目录的所有权更改为nginx。允许对目录的写访问。将目录的组权限更改为您的Linux用户。安装SSL我们需要安装Certbot来生成SSL证书。安装Certbot,并确保可以通过创建指向/usr/bin目录的符号链接来运行Certbot命令。验证Certbot是否正常运行,生成SSL证书,检查SSL续订计划程序服务。配置PHP-FPM...
确保允许 HTTP 和 HTTPS 流量通过防火墙: sudo ufw allow'Nginx Full' 12. 访问你的 Django 应用 现在你可以通过你的域名或服务器的 IP 地址访问部署的 Django 应用了。如果你需要配置 HTTPS,可以使用 Certbot 来获得免费的 SSL 证书。 sudo apt install certbot python3-certbot-nginx sudo certbot --nginx 通...
a. 通过snap安装certbot。 snap install --classic certbot b. 创建/snap/bin/certbot的软链接,方便certbot命令的使用。 ln -s /snap/bin/certbot /usr/bin/certbot 3. letsencrypt的使用 3.1. 获取证书。 a. 生成证书。 确保nginx处于运行状态,需要获取证书的站点在80端口,并且可以正常访问。
It is recommended to run your Nginx on HTTPS using an SSL certificate. You can use Let’s Encrypt, a free, automated, open certificate authority run by the nonprofit Internet Security Research Group (ISRG). First, install the certbot package as follows: ...
$ sudo certbot renew --dry-run 如果你没有看到任何错误,你就一切就绪了。你的证书将自动更新。 配置Nginx 创建并打开文件/etc/nginx/conf.d/example.conf进行编辑。 $ sudo nano /etc/nginx/conf.d/example.conf 将以下代码粘贴在其中: server { ...
0 0 * * 0 /usr/bin/certbot renew --quiet This will automatically renew the SSL certificate every week, ensuring it’s renewed well before the 90-day expiration. Conclusion In this guide, you learned how to installNginxon yourDebian 12instance and configure it further to support additional ...
运行certbot申请SSL安全证书 /snap/bin/certbot --nginx -d test.naibabiji.com 输入命令后,需要你输入一个邮箱地址,回车之后几个提示直接按Y回车。 后面需要为SSL续签的时候,运行下面的命令 certbot renew 申请完毕后,打开网站就可以看到是一把小锁了。
6. Installing Certbot Once our Nginx is up and running, we need to install certbot so that we can generate a valid SSL certificate for our domain. Before proceeding, we need to install snapd with $ apt install snapd After snapd is installed, we’ll run the following to ensure our inst...