@bgold0 If you add `-v` to your curl command, you'll possibly find that the root cert for your CouchDB server isn't installed.
Erlang (and CouchDB) can't handle the combined cert+cacert approach. You need to specify all three: ``` [ssl] cert_file = ... key_file = ... cacert_file = ... ``` Can you try including your root cert in cacert (not chained) and see if this helps? Also, can you check the CouchDB logfile and see if there's anything useful in there? If neither of these help, can you add `-v` to your curl command and paste the output here so we can get more detail on the problem? [ Full content available at: https://github.com/apache/couchdb-docker/issues/98 ] This message was relayed via gitbox.apache.org for [email protected]
