1

我正在寻找 fcgi 授权方的解决方法,这就是我的测试配置的外观:

        location ~* "f4m$" {
                limit_except GET {
                        deny all;
                }
                auth_request /clu;
                auth_request_set $node $upstream_http_server;
# Problem's that $node is always empty for <if> in this context
                proxy_set_header Node $node;
                proxy_pass http://127.0.0.1/group_1tv$request_uri;
        }
        location = /clu {
                internal;

                proxy_pass_request_body off;
                proxy_pass_request_headers off;
                proxy_set_header Content-Length '';

                proxy_pass http://cluster_authorizer$request_uri;
        }
}

如果我可以在子请求返回后立即测试变量$nodewithing结构,那将是一件很高兴和很好的事情。if不幸的是,它总是空的,我必须设置一个单独的服务器来解决它:

server {
        server_name 127.0.0.1;
        location /group_1tv/ {
                if ($request_uri ~ "^/[^/]+(.*)") {}
                if ($http_node) {return http://$http_node$1;}

                proxy_cache hyvd;
                proxy_cache_valid any 1d;
                proxy_pass http://backend_group_1tv/;
        }
}

不幸的是,这仅在 $http_node 不为空并且返回 400(未知位置)时才有效,并且调试日志没有解释原因:

2014/02/02 18:31:15 [debug] 9602#0: *18 http upstream request: "/hds-live/livepkgr/_definst_/1tv.f4m?r=334"
2014/02/02 18:31:15 [debug] 9602#0: *18 http upstream process header
2014/02/02 18:31:15 [debug] 9602#0: *18 malloc: 09C12AD8:4096
2014/02/02 18:31:15 [debug] 9602#0: *18 recv: fd:12 137 of 4096
2014/02/02 18:31:15 [debug] 9602#0: *18 http proxy status 400 "400 Unknown location"

我已经花了整整两天的时间,真的需要一个新的输入......

4

1 回答 1

1

所以我刚刚用内部代理解决了我自己的一个 400 问题,因为我将 Content-length 设置为无效设置 ('') 而不是 0。

删除这个:proxy_set_header Content-Length '';

于 2014-08-12T15:24:56.663 回答