我不想读取客户端的头Content-Length
,并创建一个新的值
proxy_set_header X-Content-Length-2 $http_content_length;
字符串
因此,服务器端缺少X-Content-Length-2
,但原始Content-Length
可用
同样的方法也适用于Content-Type
proxy_set_header X-Content-Type-2 $http_content_type;
型
我需要以其他方式读取Content-Length
吗?
1条答案
按热度按时间agxfikkp1#
它应该只是
$content_length
,而不是documentation的$http_content_length
。