range

If there were you, the world would be just right

反向代理:指本服务器接收到请求,然后将请求转发到其他服务器或者端口,并结果返回。
nginx配置中追加:

location / {
    proxy_pass http://test; # 请求需要转发的服务器或者端口
}

就这么简单。
end!!