Files
script/nginx
牡蛎 94ebff1708 refactor(nginx): 更新 SSL 证书路径
- 将 SSL 证书路径从默认的 fullchain.crt 和 privkey.key 修改为 37point2.cn.crt 和 37point2.cn.key
- 保留了原有的 SSL 协议和加密套件配置
2025-05-29 12:27:12 +08:00
..
2025-05-29 00:03:26 +08:00

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