You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@couchdb.apache.org by GitBox <gi...@apache.org> on 2017/12/05 05:08:14 UTC

[GitHub] wohali commented on issue #49: What's the default configuration file?

wohali commented on issue #49: What's the default configuration file?
URL: https://github.com/apache/couchdb-docker/issues/49#issuecomment-349197229
 
 
   You're not specifying any bind_address lines, so CouchDB will only bind to `localhost` in this situation, which won't be visible outside of the Docker container.
   
   You need to add a `bind_address` directive for the `chttpd` section:
   
   ```
   [chttpd]
   bind_address = any
   
   [httpd]
   enable_cors = true
   
   [cors]
   origins = *
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services