How to find the CouchDB locale file so that I can configure its settings?

I installed CouchDB (to run the local npm registry) and you need to find the local.ini file to configure the couch settings.

How to find local.ini file?

+7
couchdb configuration
source share
1 answer

Follow these steps to display the chain of configuration files that CouchDB uses, which should include the local.ini file:

couchdb -c 

Output Example:

 /usr/local/etc/couchdb/default.ini /usr/local/etc/couchdb/local.ini 
+11
source share

All Articles