- 将 default、git、note 目录下的 README.md 文件从 www目录移动到 nginx 目录 - 更新文件内容中的下载路径,从 www 改为 nginx- 修改 note 目录下的 deploy.sh 脚本执行路径
47 lines
470 B
Markdown
47 lines
470 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://git.sugarscat.cn/me/bash/-/raw/main/nginx/nginx.conf > /etc/nginx/nginx.conf
|
|
```
|
|
|
|
测试配置
|
|
|
|
```bash
|
|
nginx -t
|
|
```
|
|
|
|
重启 nginx
|
|
|
|
```bash
|
|
systemctl restart nginx
|
|
``` |