From e8918c464c7be09823bc8f5179080d7da0060de7 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 17 May 2017 11:55:46 +0200 Subject: Use more secure HTTPS URL for dev-www.libreoffice.org Run the command below to convert all URLs for *dev-www.libreoffice.org* to use the more secure HTTPS URL. ``` git grep -l 'http://dev-www' | xargs sed -i 's,http://dev-www.libreoffice.org,https://dev-www.libreoffice.org,g' ``` If a redirect is implemented for the insecure HTTP requests, also one request would be saved. ``` $ curl -I http://dev-www.libreoffice.org HTTP/1.1 200 OK Date: Wed, 17 May 2017 10:00:52 GMT Server: Apache/2.2.12 (Linux/SUSE) Content-Type: text/html;charset=ISO-8859-1 $ curl -I https://dev-www.libreoffice.org HTTP/1.1 200 OK Date: Wed, 17 May 2017 10:00:57 GMT Server: Apache/2.2.12 (Linux/SUSE) Content-Type: text/html;charset=ISO-8859-1 ``` Change-Id: I99626ded90f72239f98ce76fd1b2760c31c34408 Reviewed-on: https://gerrit.libreoffice.org/37703 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- README.cross | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.cross') diff --git a/README.cross b/README.cross index e391e9f7d8de..0b1b74701289 100644 --- a/README.cross +++ b/README.cross @@ -189,10 +189,10 @@ But this cross-compilation work is tested from Debian and openSUSE to Raspbian. You will need headers, pkg-config files and libraries from a Raspbian system to build against. Available at -http://dev-www.libreoffice.org/extern/ . Look for the latest +https://dev-www.libreoffice.org/extern/ . Look for the latest raspbian-root-*.tar.gz . For instance: -$ wget http://dev-www.libreoffice.org/extern/raspbian-root-20140120.tar.gz +$ wget https://dev-www.libreoffice.org/extern/raspbian-root-20140120.tar.gz $ mkdir raspbian-root $ cd raspbian-root $ tar -xf raspbian-root-20140120.tar.gz -- cgit