vote up 3 vote down star

I'm thinking of a web app that uses CouchDB extensively, to the point where there would be great gains from serving with the native erlang HTTP API as much as possible.

Can you configure Apache as a reverse proxy to allow outside GETs to be proxied directly to CouchDB, whereas PUT/POST are sent to the application internal logic (for sanitation, authentication...)? Or is this unwise -- the CouchDB built-in authentication options just seem a little weak for a Web App.

Thanks

flag

63% accept rate
this is more of an apache question than a couchdb question. And the answer is I think no. There is no way to configure apache to proxy based on http method for the request. Christian's answer below is probably the best you will get. – Jeremy Wall Aug 22 at 2:33

2 Answers

vote up 1 vote down

Did you see this? OAuth and cookie authentication were checked in on the 4th:

http://github.com/halorgium/couchdb/commit/335af7d2a9ce986f0fafa4ddac7fc1a9d43a8678

Also, if you're at all interested in using Erlang as the server language, you could proxy couchdb through webmachine:

http://blog.beerriot.com/2009/05/18/couchdb-proxy-webmachine-resource/

link|flag
vote up 1 vote down

Your question is aging without answers, so I'll add this "almost answer".

Nginx can definitely redirect differently based on requests.

This is, if you are ready to place nginx in the front as the revproxy and place apache and couchdb both as backends.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.