I have a CouchDB server that is running behind a front end proxy which only allows GET, HEAD and OPTIONS requests. POST, PUT and DELETE are all disallowed.
When I set up replication on my local machine to pull from the remote server it works fine, until it reaches the end, when it tries to POST to /_ensure_full_commit. This returns a 401 Unauthorized response and causes the replication to crash, and restarts at the beginning.
Can I prevent CouchDB replication from calling /_ensure_full_commit or do I need to change the front end proxy configuration to allow POSTs to this url?