我有两个监听器 80 和 777。端口 80 充当反向代理。并且端口 777 做了一些额外的事情,并希望重定向到端口 80。如何重定向到 nginx 中的不同端口?我正在尝试重写,但后来发现它仅用于更改路径
###
server{
listen 80;
server_name _;
location / {
proxy_pass "http://upstream0;#" is included since links are not allowed in the post
}
}
server{
listen 777;
server_name _;
#doing some other extra stuf
//Want to redirect to port 80 under some condition
}
可能吗?
谢谢