Files
script/www
699087fbc7 docs(note): 更新 README 中的部署脚本执行方式
- 将原来的直接管道到 sh 的方式改为下载脚本后再执行
- 新增 chmod +x 赋予脚本执行权限的步骤
2025-03-13 23:10:25 +08:00
..
2025-03-13 23:02:54 +08:00
2025-03-13 23:02:54 +08:00
2025-03-13 19:19:19 +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://git.sugarscat.cn/me/bash/-/raw/main/www/nginx.conf > /etc/nginx/nginx.conf

测试配置

nginx -t

重启 nginx

systemctl restart nginx