diff options
author | Joan Touzet <joant@atypical.net> | 2018-07-23 19:49:00 -0400 |
---|---|---|
committer | Joan Touzet <wohali@users.noreply.github.com> | 2018-07-24 03:25:18 -0400 |
commit | 98eec314ca4cf05399cc44d330d5abf038e399c1 (patch) | |
tree | 8b4c23a06a15b9c4b8bb3e4cf45458d0525a56e3 /rel | |
parent | 7597abf850870bb63e115ec004106b403a9be42c (diff) | |
download | couchdb-98eec314ca4cf05399cc44d330d5abf038e399c1.tar.gz |
Enable replication client _session auth by default
Relates to #1153 and #1176
Diffstat (limited to 'rel')
-rw-r--r-- | rel/overlay/etc/default.ini | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini index aa9763ce0..084a16ec2 100644 --- a/rel/overlay/etc/default.ini +++ b/rel/overlay/etc/default.ini @@ -433,13 +433,12 @@ ssl_certificate_max_depth = 3 ; There are currently two plugins available: ; couch_replicator_auth_session - use _session cookie authentication ; couch_replicator_auth_noop - use basic authentication (previous default) -; Currently previous default behavior is still the default. To start using -; session auth, use this as the list of plugins: -; `couch_replicator_auth_session,couch_replicator_auth_noop`. -; In a future release the session plugin might be used by default. +; Currently, the new _session cookie authentication is tried first, before +; falling back to the old basic authenticaion default: +;auth_plugins = couch_replicator_auth_session,couch_replicator_auth_noop +; To restore the old behaviour, use the following value: ;auth_plugins = couch_replicator_auth_noop - [compaction_daemon] ; The delay, in seconds, between each check for which database and view indexes ; need to be compacted. |