Skip to content

Instantly share code, notes, and snippets.

@filippo
Created July 7, 2010 13:12
Show Gist options
  • Save filippo/466670 to your computer and use it in GitHub Desktop.
Save filippo/466670 to your computer and use it in GitHub Desktop.
nginx proxy to couchdb using jquery.couch.js
#All calls to urls under /dbs are proxyed to couchdb
# eg. a call to http://example.com/dbs/mydb becomes http://localhost:5984/mydb
location /dbs {
rewrite /dbs/(.*) /$1 break;
proxy_pass http://localhost:5984;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
jQuery.noConflict() //I always use this
jQuery.couch.urlPrefix = 'dbs';
jQuery.couch.db('mydb').daveDoc(...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment