diff options
author | Eric Brown <browne@vmware.com> | 2017-02-05 20:36:05 -0800 |
---|---|---|
committer | Eric Brown <browne@vmware.com> | 2017-02-05 20:36:42 -0800 |
commit | 96dac98364562055720a0ada7ec3c89c8d251bf5 (patch) | |
tree | 23a500dc260d996494e1d06c76622b10dfd4a7cd /doc/source | |
parent | 49866d15f4248f803d913df5d363e798c3887556 (diff) | |
download | keystonemiddleware-96dac98364562055720a0ada7ec3c89c8d251bf5.tar.gz |
Use https for *.openstack.org references
The openstack.org pages now support https and our references to
the site should by default be one signed by the organization.
Change-Id: I8521461203fe40e4576f4de7cfb500bd64027d6d
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/conf.py | 2 | ||||
-rw-r--r-- | doc/source/index.rst | 6 | ||||
-rw-r--r-- | doc/source/middlewarearchitecture.rst | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 29bf315..14a5501 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -241,7 +241,7 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True -keystoneclient = 'http://docs.openstack.org/developer/python-keystoneclient/' +keystoneclient = 'https://docs.openstack.org/developer/python-keystoneclient/' intersphinx_mapping = {'keystoneclient': (keystoneclient, None), } diff --git a/doc/source/index.rst b/doc/source/index.rst index 97ca5f7..d101653 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -22,8 +22,8 @@ In addition to creating the Python Middleware for OpenStack Identity API, the Keystone team also provides `Identity Service`_, as well as `Python Client Library`_. -.. _`Identity Service`: http://docs.openstack.org/developer/keystone/ -.. _`Python Client Library`: http://docs.openstack.org/developer/python-keystoneclient/ +.. _`Identity Service`: https://docs.openstack.org/developer/keystone/ +.. _`Python Client Library`: https://docs.openstack.org/developer/python-keystoneclient/ Release Notes ============= @@ -42,7 +42,7 @@ using `Gerrit`_. .. _on GitHub: https://github.com/openstack/keystonemiddleware .. _Launchpad: https://launchpad.net/keystonemiddleware -.. _Gerrit: http://docs.openstack.org/infra/manual/developers.html#development-workflow +.. _Gerrit: https://docs.openstack.org/infra/manual/developers.html#development-workflow Run tests with ``tox -e py27`` if running with python 2.7. See the ``tox.ini`` file for other test environment options. diff --git a/doc/source/middlewarearchitecture.rst b/doc/source/middlewarearchitecture.rst index 3248f91..7be6e02 100644 --- a/doc/source/middlewarearchitecture.rst +++ b/doc/source/middlewarearchitecture.rst @@ -130,7 +130,7 @@ a WSGI component. Example for the auth_token middleware: .. literalinclude:: _static/keystonemiddleware.conf.sample If the ``auth_plugin`` configuration option is set, you may need to refer to -the `Authentication Plugins <http://docs.openstack.org/developer/ +the `Authentication Plugins <https://docs.openstack.org/developer/ keystoneauth/authentication-plugins.html>`_ document for how to configure the auth_token middleware. |