nginx配置 8001端口
时间: 2023-12-14 17:34:07 浏览: 292
nginx的配置
以下是在Nginx中配置8001端口的方法:
1. 进入Nginx配置文件目录:
```shell
cd /usr/local/nginx/conf
```
2. 创建vhost目录:
```shell
sudo mkdir vhost
```
3. 复制nginx.conf文件:
```shell
sudo cp nginx.conf nginx.conf_backup
```
4. 修改nginx.conf文件,添加vhost配置:
```shell
sudo vim nginx.conf
```
在http模块中添加如下内容:
```shell
include vhost/*.conf;
```
5. 创建端口代理配置文件:
```shell
cd vhost
sudo vim www.example.com.conf
```
在文件中添加如下内容:
```shell
server {
listen 8001;
server_name example.com;
location / {
proxy_pass http://127.0.0.1:8001;
}
}
```
6. 重新加载Nginx配置文件:
```shell
sudo nginx -s reload
```
这样就完成了在Nginx中配置8001端口的过程。
阅读全文