Return-Path: Delivered-To: apmail-incubator-couchdb-user-archive@locus.apache.org Received: (qmail 2883 invoked from network); 17 Apr 2008 08:21:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Apr 2008 08:21:21 -0000 Received: (qmail 60192 invoked by uid 500); 17 Apr 2008 08:21:21 -0000 Delivered-To: apmail-incubator-couchdb-user-archive@incubator.apache.org Received: (qmail 60168 invoked by uid 500); 17 Apr 2008 08:21:21 -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 60159 invoked by uid 99); 17 Apr 2008 08:21:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Apr 2008 01:21:21 -0700 X-ASF-Spam-Status: No, hits=2.4 required=10.0 tests=NORMAL_HTTP_TO_IP,SPF_PASS,URIBL_RHS_DOB,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of bchesneau@gmail.com designates 209.85.198.251 as permitted sender) Received: from [209.85.198.251] (HELO rv-out-0506.google.com) (209.85.198.251) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Apr 2008 08:20:29 +0000 Received: by rv-out-0506.google.com with SMTP id k29so1403345rvb.0 for ; Thu, 17 Apr 2008 01:20:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=Nr30pmQLE2kJhVvnm54vzun/ETngnm8pP6v0JJuO2fw=; b=bKt95CQZBJpa0rvzCIRYt/1MiqkRmAKo+Y6uc9hyvO4aTE2N87uK8iqC+DyvLD3Tkj2ABA9HKmKV43qrn2jFkmybGZ+tHHGECg6lESfHDlgOm/pSOdGB8WiebEpJNLpzysRCqN3qx8yB7euGTt9VyRmqdBabwFwPGyZ02sFUoVg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=UYlUS7QV8B/TMQqA1yfHTMp4l+QRqaVBhlz5iIXC58hu/e6IhFmrfggjDCJWdTzM4myxKbK8cFin5GgkcrrPAAwGii9uXqrafa5OSOo4mQLQl/uLsU0cOLumQfExpfAVDA7j8KNMh07xWdauqtOY0BBslEtZOCCYir/NUGuE7v8= Received: by 10.141.89.13 with SMTP id r13mr566701rvl.177.1208420449852; Thu, 17 Apr 2008 01:20:49 -0700 (PDT) Received: by 10.140.208.18 with HTTP; Thu, 17 Apr 2008 01:20:49 -0700 (PDT) Message-ID: Date: Thu, 17 Apr 2008 10:20:49 +0200 From: "Benoit Chesneau" To: couchdb-user@incubator.apache.org Subject: problem with couchdb behing nginx MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Hi, I would like to use couchdb (last trunk) behind nginx so I use this configuration : server { listen 80; server_name couchdb; location / { proxy_pass http://127.0.0.1:5984; proxy_redirect off; proxy_set_header Port $proxy_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } But it doesn't work. I can access to futon, and other pages, but db aren't listed and basically I can't do anything on the db. Same result whe I use a python script that acess to couchdb via nginx. Is there something I missed ? It's really weird anyway. - beno=EEt