All files from this thread

File Name File Size   Posted by Date  
error.txt 83.5 KB open | download Jim Ohlstein 05/03/2009 Read message
patch.fastcgi_cache 535 bytes open | download Igor Sysoev 05/04/2009 Read message
May 03, 2009 03:15AM
Igor Sysoev wrote:
> On Sun, May 03, 2009 at 02:05:57AM -0400, Jim Ohlstein wrote:
>
>
>> Igor Sysoev wrote:
>>
>>> On Sun, May 03, 2009 at 01:18:30AM -0400, Jim Ohlstein wrote:
>>>
>>>
>>>
>>>> Igor Sysoev wrote:
>>>>
>>>>
>>>>> On Sat, May 02, 2009 at 11:16:47PM -0400, Jim Ohlstein wrote:
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>> Correction:
>>>>>>
>>>>>> The question should read:
>>>>>>
>>>>>> Do I need to use two fastcgi_cache_key settings if a site serves both
>>>>>> http and https?
>>>>>>
>>>>>>
>>>>>>
>>>>> If you use the same backend - no:
>>>>>
>>>>> server {
>>>>> listen 80;
>>>>> location / {
>>>>> fastcgi_pass backend:9000;
>>>>> fastcgi_cache_key backend:9000$request_uri;
>>>>> }
>>>>> }
>>>>>
>>>>> server {
>>>>> listen 443;
>>>>> location / {
>>>>> fastcgi_pass backend:9000;
>>>>> fastcgi_cache_key backend:9000$request_uri;
>>>>> }
>>>>> }
>>>>>
>>>>>
>>>>>
>>>>>
>>>> I am using the same backend and configured like this:
>>>>
>>>> server {
>>>> listen 80;
>>>>
>>>> location / {
>>>> fastcgi_pass backend;
>>>> fastcgi_cache one;
>>>> fastcgi_cache_key backend$request_uri;
>>>> }
>>>> }
>>>>
>>>> server {
>>>> listen 443;
>>>> location / {
>>>> fastcgi_pass backend;
>>>> fastcgi_cache one;
>>>> fastcgi_cache_key backend$request_uri;
>>>> }
>>>> }
>>>>
>>>>
>>> Yes, this is OK.
>>>
>>>
>>>
>>>> For what it may be worth, I have seen some md5 collisions in the error
>>>> log:
>>>>
>>>> 2009/05/03 00:39:18 [crit] 21997#0: *61 cache file
>>>> "/usr/local/nginx/cache/0/da/90e8de013d4126fbab247d12350fdda0" has md5
>>>> collision, client: my.ip.addr.ess, server: mydomain.com, request: "GET
>>>> /rtwhtrsyrn/010110A/687474702s7777772r777732746s7073697465732r636s6q2s627574746s6r2r7068703s753q776s726p6477617274776s7n6s6r655s636s6q
>>>> HTTP/1.1", host: "mydomain.com", referrer:
>>>> "https://mydomain.com/rtwhtrsyrn/010110A/687474702s776s726p6477617274776s7n6s6r652r636s6q2s666s72756q732s616r6r6s756r63656q656r74732s31333535392q6r6s2q796s752q6172656r742q6372617n792r68746q6p"
>>>> 2009/05/03 00:39:24 [crit] 21997#0: *44 cache file
>>>> "/usr/local/nginx/cache/0/da/90e8de013d4126fbab247d12350fdda0" has md5
>>>> collision, client: my.ip.addr.ess, server: mydomain.com, request: "GET
>>>> /rtwhtrsyrn/010110A/687474702s7777772r777732746s7073697465732r636s6q2s627574746s6r2r7068703s753q776s726p6477617274776s7n6s6r655s636s6q
>>>> HTTP/1.1", host: "mydomain.com", referrer:
>>>> "https://mydomain.com/rtwhtrsyrn/010110A/687474702s776s726p6477617274776s7n6s6r652r636s6q2s666s72756q732s2r2r2s"
>>>>
>>>>
>>> nginx uses md5 create a cache key and use the key as path to a cache file,
>>> 90e8de013d4126fbab247d12350fdda0 in you case. Besides, in the file there
>>> is crc32 of the original key to test possible md5 collisions.
>>>
>>> Could you run
>>>
>>> head -1 /usr/local/nginx/cache/0/da/90e8de013d4126fbab247d12350fdda0 |
>>> hexdump
>>> head -2 /usr/local/nginx/cache/0/da/90e8de013d4126fbab247d12350fdda0 |
>>> tail -1
>>>
>>> ?
>>>
>>>
>>>
>>>
>> [root@saturn logs]# head -1
>> /usr/local/nginx/cache/0/da/90e8de013d4126fbab247d12350fdda0 | hexdump
>> 0000000 8ab0 1afc 0000 0000 1a20 b835 0032 0000
>> 0000010 0000 0000 0000 0000 0000 0000 0000 0000
>> 0000020 028b 0000 0000 0000 000a
>> 0000029
>> [root@saturn logs]# head -2
>> /usr/local/nginx/cache/0/da/90e8de013d4126fbab247d12350fdda0 | tail -1
>> KEY:
>> unix:/tmp/cgi.sock.1:/rtwhtrsyrn/010110A/687474702s7777772r777732746s7073697465732r636s6q2s627574746s6r2r7068703s753q776s726p6477617274776s7n6s6r655s636s6q
>>
>
> It's seems like nginx bug. Could you create debug log ?
>
>
>
I'm sure I could... if only I knew how. :)

Can you please give me the steps you want me to take?

It will have to wait a few hours. It's ~ 0315 here and I'm going to bed.

Jim
Subject Author Posted

nginx serving wrong website under proxy_cache

Payam Chychi April 28, 2009 10:27PM

Re: nginx serving wrong website under proxy_cache

Payam Chychi April 28, 2009 10:55PM

Re: nginx serving wrong website under proxy_cache

Igor Sysoev April 29, 2009 01:49AM

Re: nginx serving wrong website under proxy_cache

Payam Chychi April 29, 2009 02:40AM

Re: nginx serving wrong website under proxy_cache

Igor Sysoev April 29, 2009 02:44AM

Re: nginx serving wrong website under proxy_cache

Jim Ohlstein May 02, 2009 11:12PM

Re: nginx serving wrong website under proxy_cache

Jim Ohlstein May 02, 2009 11:16PM

Re: nginx serving wrong website under proxy_cache

Igor Sysoev May 03, 2009 12:34AM

Re: nginx serving wrong website under proxy_cache

Jim Ohlstein May 03, 2009 01:18AM

Re: nginx serving wrong website under proxy_cache

Igor Sysoev May 03, 2009 01:29AM

Re: nginx serving wrong website under proxy_cache

Jim Ohlstein May 03, 2009 02:05AM

Re: nginx serving wrong website under proxy_cache

Igor Sysoev May 03, 2009 02:44AM

Re: nginx serving wrong website under proxy_cache

Jim Ohlstein May 03, 2009 03:15AM

Re: nginx serving wrong website under proxy_cache

Igor Sysoev May 03, 2009 03:28AM

Re: nginx serving wrong website under proxy_cache Attachments

Jim Ohlstein May 03, 2009 03:55PM

Re: nginx serving wrong website under proxy_cache

Payam Chychi May 03, 2009 04:21PM

Re: nginx serving wrong website under proxy_cache Attachments

Igor Sysoev May 04, 2009 02:46PM

Re: nginx serving wrong website under proxy_cache

alamgir99 May 04, 2009 11:45AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 183
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready