From 9c835e7f1c850c9a24b426b0ff3ad6fd77f4db51 Mon Sep 17 00:00:00 2001 From: loooosy Date: Sat, 8 Apr 2017 23:30:01 +0800 Subject: [PATCH] Optimize the link address Use https instead of http to ensure the safety without containing our account/password information Change-Id: I2433e484d258dafe9a8eedf84fc4b60c4ce9836a --- CONTRIBUTING.rst | 4 ++-- HACKING.rst | 2 +- README.rst | 22 +++++++++++----------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 30eb0d31d..9fe51e0d0 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -10,13 +10,13 @@ If you would like to contribute to the development of any OpenStack project including Congress, you must follow the steps in this page: - http://docs.openstack.org/infra/manual/developers.html + https://docs.openstack.org/infra/manual/developers.html Once those steps have been completed, changes to OpenStack should be submitted for review via the Gerrit tool, following the workflow documented at: - http://docs.openstack.org/infra/manual/developers.html#development-workflow + https://docs.openstack.org/infra/manual/developers.html#development-workflow Pull requests submitted through GitHub will be ignored. diff --git a/HACKING.rst b/HACKING.rst index f3e874ff0..431bbbb7a 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -2,4 +2,4 @@ Congress style commandments =========================== -Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/ +Read the OpenStack Style Commandments https://docs.openstack.org/developer/hacking/ diff --git a/README.rst b/README.rst index 5cb22e321..8ef882bbe 100644 --- a/README.rst +++ b/README.rst @@ -2,8 +2,8 @@ Team and repository tags ======================== -.. image:: http://governance.openstack.org/badges/congress.svg - :target: http://governance.openstack.org/reference/tags/index.html +.. image:: https://governance.openstack.org/badges/congress.svg + :target: https://governance.openstack.org/reference/tags/index.html .. Change things from this point on @@ -145,7 +145,7 @@ Install the following software, if you haven't already. * pip: https://pip.pypa.io/en/latest/installing.html -* java: http://java.com (any reasonably current version should work) +* java: https://java.com (any reasonably current version should work) On Ubuntu: console apt-get install default-jre * Additionally @@ -281,21 +281,21 @@ Set up Congress accounts Create the Congress Service Endpoint - Endpoint creation differs based upon the Identity version. Please see the `endpoint `_ documentation for details. + Endpoint creation differs based upon the Identity version. Please see the `endpoint `_ documentation for details. .. code-block:: console Identity v2: - $ openstack endpoint create $CONGRESS_SERVICE --region RegionOne --publicurl http://127.0.0.1:1789/ --adminurl http://127.0.0.1:1789/ --internalurl http://127.0.0.1:1789/ + $ openstack endpoint create $CONGRESS_SERVICE --region RegionOne --publicurl https://127.0.0.1:1789/ --adminurl https://127.0.0.1:1789/ --internalurl https://127.0.0.1:1789/ .. code-block:: console Identity v3: - $ openstack endpoint create --region $OS_REGION_NAME $CONGRESS_SERVICE public http://$SERVICE_HOST:1789 - $ openstack endpoint create --region $OS_REGION_NAME $CONGRESS_SERVICE admin http://$SERVICE_HOST:1789 - $ openstack endpoint create --region $OS_REGION_NAME $CONGRESS_SERVICE internal http://$SERVICE_HOST:1789 + $ openstack endpoint create --region $OS_REGION_NAME $CONGRESS_SERVICE public https://$SERVICE_HOST:1789 + $ openstack endpoint create --region $OS_REGION_NAME $CONGRESS_SERVICE admin https://$SERVICE_HOST:1789 + $ openstack endpoint create --region $OS_REGION_NAME $CONGRESS_SERVICE internal https://$SERVICE_HOST:1789 @@ -329,7 +329,7 @@ Configure datasource drivers --config username=$OS_USERNAME \ --config tenant_name=$OS_TENANT_NAME --config password=$OS_PASSWORD - --config auth_url=http://$SERVICE_HOST:5000/v2.0 + --config auth_url=https://$SERVICE_HOST:5000/v2.0 @@ -359,7 +359,7 @@ Read the HTML documentation Test Using the Congress CLI - If you are not familiar with using the OpenStack command-line clients, please read the `OpenStack documentation `_ before proceeding. + If you are not familiar with using the OpenStack command-line clients, please read the `OpenStack documentation `_ before proceeding. Once you have set up or obtained credentials to use the OpenStack command-line clients, you may begin testing Congress. During installation a number of policies are created. @@ -391,7 +391,7 @@ Then run ``tox`` with the debug environment as one of the following:: tox -e debug test_file_name.TestClass.test_name For more information see the `oslotest documentation -`_. +`_. 4.4 Upgrade -----------