Files
script/nginx/README.md
牡蛎 d5ef65ac0e refactor: 更新代码仓库地址为 Gitee
- 将 GitLab 地址替换为 Gitee 地址
- 更新涉及多个文件中的安装脚本和配置文件下载链接
- 此修改统一了代码源,提高了项目的可维护性
2025-05-28 11:39:46 +08:00

48 lines
471 B
Markdown

# Nginx
## 安装 Nginx
安装 Nginx
```bash
apt-get update && apt-get install nginx
```
启动 Nginx
```bash
systemctl start nginx
```
开机自启动
```bash
systemctl enable nginx
```
查看状态
```bash
systemctl status nginx
```
## Nginx 配置
下载配置
```bash
curl -fsSL https://gitee.com/Sugarscat/script/raw/main/nginx/nginx.conf > /etc/nginx/nginx.conf
```
测试配置
```bash
nginx -t
```
重启 nginx
```bash
systemctl restart nginx
```