我正在尝试使用 X-Accel 将有关请求的信息传递给内部重定向的 uri。
location / {
root /web/external;
include fastcgi.conf;
fastcgi_param SCRIPT_FILENAME $document_root/check.php;
fastcgi_pass unix:/services/.sock/fastcgi.sock;
}
location /internal/ {
internal;
alias /web/internal;
include fastcgi.conf;
fastcgi_param SCRIPT_FILENAME $document_root/app.php;
fastcgi_pass unix:/services/.sock/fastcgi.sock;
}
check.php 将 X-Accel-Redirect 标头返回到 /internal/$uri 并发送我想传递给内部请求的其他标头值。我尝试使用 $sent_header_* 访问标题,但它似乎不起作用。