ngx_http_mirror_module
最后更新于
location / {
mirror /mirror;
mirror_request_body off;
proxy_pass http://backend;
}
location /mirror {
internal;
proxy_pass http://log_backend;
proxy_pass_request_body off;
proxy_set_header Content-Length "";
proxy_set_header X-Original-URI $request_uri;
}