Zoe Marmara
Zoe Marmara

Reputation: 1144

Can't access web app running locally with CouchDB

I have a web app running locally with CouchDB. I'm trying to access the app from my mobile and tablet but I can't access it. I'm puzzled... The app runs on localhost:5984/myDb/_design/myDesign/mypage.html.Any ideas? Thank you.

Upvotes: 1

Views: 245

Answers (1)

Zoe Marmara
Zoe Marmara

Reputation: 1144

Ok, so for any person, like me, who couldn't come up with the reason why... :)

In the default configuration (local.ini) the bind_address option is set to 127.0.0.1. If you change the bind_address option to 0.0.0.0, then you'll be able to access CouchDB remotely. Restart CouchDB after making this change.

Upvotes: 3

Related Questions