We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to run CouchDB behind a reverse proxy by listening to the unix domain socket.
[chttpd] bind_address = /path/to/couchdb.sock
or
[chttpd] socket_path = /path/to/couchdb.sock
Then CouchDB will accept requests from /path/to/couchdb.sock.
/path/to/couchdb.sock
This is because I want to run CouchDB on a shared host where I can't have exclusive access to any ports.
The text was updated successfully, but these errors were encountered:
Thanks, @hkcomori. That might work, seeing as Erlang supports unix sockets https://www.erlang.org/doc/apps/kernel/inet#t:local_address/0, and assuming mochiweb will transparently pass it through.
Sorry, something went wrong.
No branches or pull requests
Summary
I want to run CouchDB behind a reverse proxy by listening to the unix domain socket.
Desired Behaviour
or
Then CouchDB will accept requests from
/path/to/couchdb.sock
.Possible Solution
Additional context
This is because I want to run CouchDB on a shared host where I can't have exclusive access to any ports.
The text was updated successfully, but these errors were encountered: