Use https instead of http

Currently http is used to access git, however http is not safe enough
since the access information contains our account/password information.
Use https instead of http to ensure the safety.

And for others services such as pypi or python, it's still nice to use
https.

Change-Id: I706a4a1873c6bbc05385057757fc5962344f9371
This commit is contained in:
Yumeng_Bao
2017-03-16 09:37:10 +08:00
committed by YumengBao
parent 51bf7fedb6
commit 6d81ac15b8
2 changed files with 10 additions and 10 deletions

View File

@@ -18,14 +18,14 @@ The source install instructions specifically avoid using platform specific
packages, instead using the source for the code and the Python Package Index packages, instead using the source for the code and the Python Package Index
(PyPi_). (PyPi_).
.. _PyPi: http://pypi.python.org/pypi .. _PyPi: https://pypi.python.org/pypi
It's expected that your system already has python2.7_, latest version of pip_, It's expected that your system already has python2.7_, latest version of pip_,
and git_ available. and git_ available.
.. _python2.7: http://www.python.org .. _python2.7: https://www.python.org
.. _pip: http://www.pip-installer.org/en/latest/installing.html .. _pip: https://pip.pypa.io/en/latest/installing/
.. _git: http://git-scm.com/ .. _git: https://git-scm.com/
Your system shall also have some additional system libraries: Your system shall also have some additional system libraries:

View File

@@ -16,8 +16,8 @@ for development purposes.
To install Watcher from packaging, refer instead to Watcher `User To install Watcher from packaging, refer instead to Watcher `User
Documentation`_. Documentation`_.
.. _`Git Repository`: http://git.openstack.org/cgit/openstack/watcher .. _`Git Repository`: https://git.openstack.org/cgit/openstack/watcher
.. _`User Documentation`: http://docs.openstack.org/developer/watcher/ .. _`User Documentation`: https://docs.openstack.org/developer/watcher/
Prerequisites Prerequisites
============= =============
@@ -35,10 +35,10 @@ following tools available on your system:
**Reminder**: If you're successfully using a different platform, or a **Reminder**: If you're successfully using a different platform, or a
different version of the above, please document your configuration here! different version of the above, please document your configuration here!
.. _Python: http://www.python.org/ .. _Python: https://www.python.org/
.. _git: http://git-scm.com/ .. _git: https://git-scm.com/
.. _setuptools: http://pypi.python.org/pypi/setuptools .. _setuptools: https://pypi.python.org/pypi/setuptools
.. _virtualenvwrapper: https://virtualenvwrapper.readthedocs.org/en/latest/install.html .. _virtualenvwrapper: https://virtualenvwrapper.readthedocs.io/en/latest/install.html
Getting the latest code Getting the latest code
======================= =======================