ceremcem commented on issue #2035: Fauxton not working properly under NGINX 
reverse proxy
URL: https://github.com/apache/couchdb/issues/2035#issuecomment-494742964
 
 
   FYI: My use case is exactly the same (I'm reverse proxying CouchDB with 
Nginx in a subdirectory) with the following configuration: 
   
   ```
       location ^~ /db2/ {
           proxy_pass http://10.0.8.19:5984/;
           proxy_redirect off;
           proxy_buffering off;
           proxy_set_header Host $host;
           proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       }
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to