21 lines
443 B
Markdown
21 lines
443 B
Markdown
# 安装 Nginx
|
|
|
|
## linux 安装 nginx 通用脚本
|
|
|
|
使用方法:
|
|
|
|
```sh
|
|
curl -o- https://raw.githubusercontent.com/dunwu/os-tutorial/master/codes/linux/ops/soft/nginx/install-nginx.sh | bash
|
|
```
|
|
|
|
脚本会下载解压 nginx 到 `/opt/nginx` 路径下。
|
|
|
|
## Centos 安装 nginx 脚本
|
|
|
|
使用方法:
|
|
|
|
```sh
|
|
curl -o- https://raw.githubusercontent.com/dunwu/os-tutorial/master/codes/linux/ops/soft/nginx/install-nginx-by-yum.sh | bash
|
|
```
|
|
|