Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
error_page & cookie
- To: nginx-ru@xxxxxxxxx
- Subject: error_page & cookie
- From: "Denis Gabaidulin" <sherman@xxxxxxxxxxxx>
- Date: Thu, 16 Aug 2007 20:15:17 +0400
- Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=VeTejG+K4j6RzQuTxwjikcXdH36P7V5EdPnXr4VFQfXjObFd81/IkTLqULHXVbgyjangWinhJ9z37nkqqLpQiOQxi/xaHfmBR/JVVmwApESpq1vvNarcgZ25YNsE7kcab5/76Voil+ze/0ARdN9SNfitesHIiOlqQOfCSb0EVHU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=HJo/mTDfCjijPqV8EHgg2Zm4fGDL6Rtza7dF2RbqnC3pQreyRTiGHVt4zGDzH8ep8w7bBuKtpB2FH1EObSZuFIMkKMAQKO1zYx+yw4u86sSf7BUlEl5KoPhtVVWwCWZePC886Chc71fvan5O42/kp+xrbt1M2xkYLaXe7nySTPo=
Доброго времени суток.
У меня есть следующая конфигурация.
location /index.php {
add_header Cache-Control no-cache,no-store;
set $original_qs $query_string;
if ($query_string ~* "c=([0-9]{1,6})(\;b=[0-2])?$") {
rewrite (.+) /hit last;
}
}
# handle hit
location /hit {
include conf/fastcgi_params;
fastcgi_param PATH_TRANSLATED /var/www/stinger/utils/counter.php;
fastcgi_pass unix:/var/run/php-cgi/php-cgi.sock;
fastcgi_intercept_errors on;
error_page 501 =200 /continue;
}
location /continue {
internal;
set $img_content_type 15;
if ($http_accept ~* "image\/\*") {
set $img_content_type 1;
}
if ($http_accept ~* "\*\/\*") {
set $img_content_type 1;
}
if ($http_accept ~* "image\/gif") {
set $img_content_type 1;
}
if ($original_qs ~* "c=([0-9]{1,6})(\;b=[0-2])?$") {
set $client $1;
rewrite (.+) "/${client}_${img_content_type}" last;
}
}
# TODO: move all headers to memcached;
# gif
location ~* "/[0-9]{1,6}_1$" {
add_header Cache-Control no-cache,no-store;
default_type image/gif;
set $memcached_key "$uri?$args";
memcached_pass localhost:11211;
# handle 404
if ($content_length = "") {
rewrite (.*) /banner.php?$original_qs last;
}
}
# generate banner on the fly
location /banner.php {
include conf/fastcgi_params;
fastcgi_param PATH_TRANSLATED /var/www/stinger/src/web/banner.php;
fastcgi_pass unix:/var/run/php-cgi/php-cgi.sock;
}
В location "hit" у меня срабатывает php скрипт, и выдает заголовки:
Set-Cookie: ...
HTTP/1.1 501 Not Implemented
Проблема в том, что cookie дальше не передается, и соответсвенно
клиенту уже не приходит :-(
Как-нибудь можно передать в данном случае заголовок Cookie ?
p.s. Вместо 501 пробовал разные варианты, результат тот же :-(
|