如何从http-proxy发送HTTP错误?

时间:2017-06-07 11:07:39

标签: node.js http proxy node-http-proxy

http-proxy是否可以不向服务器转发请求,但是立即返回带有错误代码的响应,例如401未经授权?
我需要分析请求正文,在某些情况下不要将请求转发给服务器。

可以做到吗?
或者http-proxy只能修改请求和响应,但请求总是应该转发到服务器?

1 个答案:

答案 0 :(得分:1)

你可以尝试这样做:

const server = http.createServer((req, res) => {
    if(/*your auth check*/){
        //return the 401 error
    }
    //auth check is passed, pass the request to the proxy
    proxy.web(req, res, { target: 'http://your.target' });
});