I would like to know how to password protect couchdb web interface in a production server?

What's the best method?

Thanks

So far I tried with .htaccess, although it is still not protecting:

  AuthUserFile /home/dir/htpassword/.htpasswd
  AuthType Basic
  AuthName "CouchDB Admin Interface"  
  Require valid-user
link|improve this question

50% accept rate
Added an issue issues.apache.org/jira/browse/COUCHDB-1404 – ipegasus Feb 8 at 0:20
feedback

1 Answer

up vote 1 down vote accepted

Normally, CouchDB is the server, and it doesn't support .htaccess as far as I'm concerned. You can, of course, proxy it through Apache, but the best solution would probably be to use the built-in authentication methods of Couchdb.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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