diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 6580238..35ecca2 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -144,6 +144,8 @@ it will not automatically start synchronizing those [2]_. You should run .. [2] Because collections are added rarely, and checking for this case before every synchronization isn't worth the overhead. +.. _ssl-tutorial: + SSL --- diff --git a/vdirsyncer/storage/http.py b/vdirsyncer/storage/http.py index fa37ded..d3e7498 100644 --- a/vdirsyncer/storage/http.py +++ b/vdirsyncer/storage/http.py @@ -48,9 +48,11 @@ HTTP_STORAGE_PARAMETERS = ''' :param username: Username for authentication. :param password: Password for authentication. :param verify: Verify SSL certificate, default True. This can also be a - local path to a self-signed SSL certificate. + local path to a self-signed SSL certificate. See :ref:`ssl-tutorial` + for more information. :param verify_fingerprint: Optional. SHA1 or MD5 fingerprint of the - expected server certificate. + expected server certificate. See :ref:`ssl-tutorial` for more + information. :param auth: Optional. Either ``basic``, ``digest`` or ``guess``. Default ``guess``. If you know yours, consider setting it explicitly for performance.