禁止nginx重定向至监听端口
时间: 2023-11-11 08:07:00 浏览: 232
Nginx配置80端口访问8080及项目名地址方法解析
要禁止nginx将请求重定向到监听端口,可以在nginx配置文件中使用`proxy_pass`指令并设置`proxy_redirect`为off。以下是一个示例配置:
```
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://localhost:8080;
proxy_redirect off;
}
}
```
在这个示例中,nginx会代理所有来自`example.com`的请求到本地的8080端口,同时禁用重定向。这样就可以避免nginx将请求重定向到监听端口。
阅读全文