Files
script/nginx
牡蛎 d6f76f2cf6 docs/nginx: 添加 37point2.cn 网站配置示例
- 新增 Nginx 配置文件和 README 指南
- 提供网站配置下载、启用、修改和测试的详细步骤
- 添加备案图标文件
2025-05-28 23:56:02 +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