<div dir="ltr"><div>I will inform the backend developers about the sending of the two incompatible headers.<br></div><div>I already have the "if" filtering these requests, but returning pipe, now i know why return pass was not working<br><br></div><div>Thank you<br></div><div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Dec 15, 2015 at 4:29 PM, Geoff Simmons <span dir="ltr"><<a href="mailto:geoff@uplex.de" target="_blank">geoff@uplex.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
<br>
</span>The response specifies both Content-Length *and* chunked encoding, but<br>
it has to be one or the other. In fact, the response body is not<br>
chunked-encoded, so it should have been only Content-Length.<br>
<br>
> ... how can i use return(pass) for these requests?<br>
<br>
For which requests? If you want pass for every URL that begins with<br>
"/profiles/", then:<br>
<br>
if (req.url ~ "^/profiles/") {<br>
    return(pass);<br>
}<br>
<br>
But you really should fix the server, it evidently can't make up its<br>
mind about Content-Length or chunked encoding, and that can't ever be<br>
right.<br>
<br>
<br>
HTH,<br>
Geoff<br>
<span class="HOEnZb"><font color="#888888">--<br>
** * * UPLEX - Nils Goroll Systemoptimierung<br>
<br>
Scheffelstraße 32<br>
22301 Hamburg<br>
<br>
Tel <a href="tel:%2B49%2040%202880%205731" value="+494028805731">+49 40 2880 5731</a><br>
Mob <a href="tel:%2B49%20176%20636%2090917" value="+4917663690917">+49 176 636 90917</a><br>
Fax <a href="tel:%2B49%2040%2042949753" value="+494042949753">+49 40 42949753</a><br>
<br>
<a href="http://uplex.de" rel="noreferrer" target="_blank">http://uplex.de</a><br>
<br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature"><div dir="ltr"><p style="line-height:3px;color:rgb(102,102,102);font-size:13px;font-weight:bold">Gonçalo Silva<br></p><p style="line-height:3px;color:rgb(102,102,102);font-size:11px">Head Security<br></p><br>Portugal<p style="line-height:3px;color:rgb(102,102,102);font-size:11px"><a href="tel:%2B351%20%2896%29%20343-09-55" value="+351963430955" target="_blank">goncalo.silva@muzzley.com<br></a></p><p style="line-height:3px;color:rgb(102,102,102);font-size:11px">Rua do Ouro, n181, 1100-061 Lisboa</p><p style="color:rgb(191,191,191);line-height:3px;margin-top:25px"><a href="http://www.muzzley.com/" style="color:rgb(102,102,102);font-weight:bold;font-size:11px" target="_blank">http://www.muzzley.com</a></p></div></div>
</div></div></div></div></div>