Return-Path: Delivered-To: apmail-incubator-couchdb-user-archive@locus.apache.org Received: (qmail 80286 invoked from network); 23 Apr 2008 18:24:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Apr 2008 18:24:08 -0000 Received: (qmail 85713 invoked by uid 500); 23 Apr 2008 18:24:09 -0000 Delivered-To: apmail-incubator-couchdb-user-archive@incubator.apache.org Received: (qmail 85692 invoked by uid 500); 23 Apr 2008 18:24:08 -0000 Mailing-List: contact couchdb-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-user@incubator.apache.org Delivered-To: mailing list couchdb-user@incubator.apache.org Received: (qmail 85681 invoked by uid 99); 23 Apr 2008 18:24:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2008 11:24:08 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of guby.mail@gmail.com designates 209.85.142.185 as permitted sender) Received: from [209.85.142.185] (HELO ti-out-0910.google.com) (209.85.142.185) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2008 18:23:25 +0000 Received: by ti-out-0910.google.com with SMTP id y8so1339709tia.6 for ; Wed, 23 Apr 2008 11:23:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer; bh=45mEsPoXlhKiuQjkg6S9S4wAfxCVKdITAjh/bySYzZw=; b=HQB3/SR+dg+dR5mwpcbEGrr/Emvz1jW6MUNbEQ4YAc/vD4SrZisczCe0meZjPnWtvxn7toEPWc/g+pq171/AIgiSYQy6IIcDmfhD8S1e+yUtNDSjl4qdJxWTffj8pRLpsL/zay7mFSZYvyIxzJhdOXz5dAN45/npuDcQP9MvBn8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer; b=g+Fgsmq7iHesVn0ExjPrUZLORLlZrtpAHFXHoYbP8ONpxDynszBeCiKHo7Aq6Q7b1oSWp1jde4toXzRYDkpFjCqVPeAuGyjVSWBw6EkSPBGx1tZOfm/+T75gn7PiIcfKpmF1WwTgJZAGmAikOwnfURVRvfzDsW4BXb6ThfnVBsw= Received: by 10.150.152.17 with SMTP id z17mr376975ybd.106.1208975014405; Wed, 23 Apr 2008 11:23:34 -0700 (PDT) Received: from ?192.168.1.100? ( [200.89.150.124]) by mx.google.com with ESMTPS id g7sm869838wra.16.2008.04.23.11.23.32 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 23 Apr 2008 11:23:33 -0700 (PDT) Message-Id: <6F3CD0A6-77CF-4451-9E49-87A51F432EB0@gmail.com> From: Guby To: couchdb-user@incubator.apache.org In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v919.2) Subject: Re: Erroneous output from the trunk? Date: Wed, 23 Apr 2008 15:22:18 -0300 References: <2A67D687-745D-4FDB-9ECE-2491EB48A817@gmail.com> <241FC5B1-8820-4492-B73D-5500465C90FD@gmail.com> <2CB74745-B717-4931-8F35-843D13F8805E@gmail.com> X-Mailer: Apple Mail (2.919.2) X-Virus-Checked: Checked by ClamAV on apache.org I access it through nginx, but this worked perfectly until I updated =20 couchdb. The nginx config looks like this: upstream db { server 127.0.0.1:5984; } server { listen 80; server_name my_domain.com; location / { proxy_pass http://db; auth_basic "Restricted area"; auth_basic_user_file /path_to_password_file/.htpasswd; break; } } Here are the headers from Firefox: Response Headers Transfer-Encoding chunked Date Wed, 23 Apr 2008 16:00:36 GMT Content-Type text/plain;charset=3Dutf-8 Server nginx/0.5.26 Content-Encoding gzip Request Headers Host db.kle.io User-Agent Mozilla/5.0 (Macintosh; U; Intel Mac OS X; nb-NO; rv:=20 1.8.1.14) Gecko/20080404 Firefox/2.0.0.14 Accept text/xml,application/xml,application/xhtml+xml,text/=20 html;q=3D0.9,text/plain;q=3D0.8,image/png,*/*;q=3D0.5 Accept-Language nb,no;q=3D0.8,nn;q=3D0.6,en-us;q=3D0.4,en;q=3D0.2 Accept-Encoding gzip,deflate Accept-Charset ISO-8859-1,utf-8;q=3D0.7,*;q=3D0.7 Keep-Alive 300 Connection keep-alive Authorization Basic c2ViYXN0aWFuOnNlYmJhODU=3D Best regards Sebastian On Apr 23, 2008, at 2:15 PM, Benoit Chesneau wrote: > On Wed, Apr 23, 2008 at 6:10 PM, Guby wrote: > >> It is when I access the couchdb server from my local machine using =20= >> safari >> and firefox that I get the strange output. That never happened =20 >> before! I >> haven't changed my nginx setup or config either. >> > > do you access directly to couch or via nginx ? do you have a way to > check header you get from the server response ? if yes , could you > paste it here ? > > > - beno=EEt