I solved it!<br>I was trying to recover, build, and run my application from a backup after my development machine died, but I was juggling too many tasks. So I was erroneously looking for the cookie headers from nginx by doing this:<br>
    curl -i <a href="http://my.host/">http://my.host/</a> | less<br>When I was meaning to do this:<br>    curl -i <a href="http://my.host/fcgi/myapp">http://my.host/fcgi/myapp</a> | less<br><br>Therefore, I was calling index.html instead of my fastcgi process and obviously getting no cookies. I took a short break, came back and immediately noticed the error.<br>
<br>Thanks!<br><br><div class="gmail_quote">On Thu, Nov 19, 2009 at 12:11 AM, Eren Türkay <span dir="ltr">&lt;<a href="mailto:eren@pardus.org.tr">eren@pardus.org.tr</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On Tuesday 17 November 2009 11:56:39 pm L. S. wrote:<br>
&gt; My FastCGI process sends cookies, but they are not being sent to the<br>
&gt; browser. Why does nginx not send the cookie header?<br>
<br>
</div>Can you try explicitly set proxy header to pass with this setting?<br>
<br>
     proxy_pass_header  Set-Cookie;<br>
<br>
</blockquote></div><br>