diff --git a/README.rst b/README.rst index a6d7d76..268a037 100644 --- a/README.rst +++ b/README.rst @@ -65,10 +65,22 @@ Possible options for ``CONFIG`` are listed below. ``hosts`` ~~~~~~~~~ -The server(s) to connect to, as either URIs, ``(host, port)`` tuples, or dicts conforming to `redis Connection `_. +The server(s) to connect to, as either URIs, ``(host, port)`` tuples, or dicts conforming to `redis Connection `_. Defaults to ``redis://localhost:6379``. Pass multiple hosts to enable sharding, but note that changing the host list will lose some sharded data. +SSL connections that are self-signed (ex: Heroku): + +.. code-block:: python + +{ + "hosts":[ + "address": "rediss://user@host:port", // "REDIS_TLS_URL" + "ssl_cert_reqs": None + ] +} + + Sentinel connections require dicts conforming to: .. code-block::