- 删除了 nginx/37point2.cn 目录下的 beianicon.png 文件 - 在 index.html 中将备案图标的 src 属性修改为 base64 编码的图片数据
Nginx
安装 Nginx
安装 Nginx
apt-get update && apt-get install nginx
启动 Nginx
systemctl start nginx
开机自启动
systemctl enable nginx
查看状态
systemctl status nginx
Nginx 配置
下载配置
curl -fsSL https://gitee.com/Sugarscat/script/raw/main/nginx/nginx.conf > /etc/nginx/nginx.conf
测试配置
nginx -t
重启 nginx
systemctl restart nginx