diff options
author | Jon Mason <jdmason@kudzu.us> | 2021-10-07 11:06:28 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-10-08 22:01:24 +0100 |
commit | 58645b0586d56651d2fdcd154600f333ba63beaf (patch) | |
tree | 35e919925e3a1eaeff696e4a80cbe1459df8af24 /documentation/ref-manual | |
parent | 8c5c32619ab3b4a3ce867db4dc9a67e636611cf3 (diff) | |
download | poky-58645b0586d56651d2fdcd154600f333ba63beaf.tar.gz |
documentation: replace http with https for URLs
https has been the preferred way to access websites for many years now.
Change all of the URLs with a _working_ https server/certificate to use
that URL.
(From yocto-docs rev: c77868c780df94356d5f21453f80ace073fade9b)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r-- | documentation/ref-manual/faq.rst | 16 | ||||
-rw-r--r-- | documentation/ref-manual/variables.rst | 8 |
2 files changed, 12 insertions, 12 deletions
diff --git a/documentation/ref-manual/faq.rst b/documentation/ref-manual/faq.rst index e4d3d3e963..7b337dbf60 100644 --- a/documentation/ref-manual/faq.rst +++ b/documentation/ref-manual/faq.rst | |||
@@ -302,10 +302,10 @@ attempt before any others by adding something like the following to the | |||
302 | ``local.conf`` configuration file:: | 302 | ``local.conf`` configuration file:: |
303 | 303 | ||
304 | PREMIRRORS:prepend = "\ | 304 | PREMIRRORS:prepend = "\ |
305 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 305 | git://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
306 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 306 | ftp://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
307 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 307 | http://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
308 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" | 308 | https://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n" |
309 | 309 | ||
310 | These changes cause the build system to intercept Git, FTP, HTTP, and | 310 | These changes cause the build system to intercept Git, FTP, HTTP, and |
311 | HTTPS requests and direct them to the ``http://`` sources mirror. You | 311 | HTTPS requests and direct them to the ``http://`` sources mirror. You |
@@ -342,10 +342,10 @@ You could make the following changes to the ``local.conf`` configuration | |||
342 | file as long as the :term:`PREMIRRORS` server is current:: | 342 | file as long as the :term:`PREMIRRORS` server is current:: |
343 | 343 | ||
344 | PREMIRRORS:prepend = "\ | 344 | PREMIRRORS:prepend = "\ |
345 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 345 | git://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
346 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 346 | ftp://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
347 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 347 | http://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
348 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" | 348 | https://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n" |
349 | BB_FETCH_PREMIRRORONLY = "1" | 349 | BB_FETCH_PREMIRRORONLY = "1" |
350 | 350 | ||
351 | These changes would cause the build system to successfully fetch source | 351 | These changes would cause the build system to successfully fetch source |
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index 8bd7b08c6e..52561f07ce 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -5855,10 +5855,10 @@ system and gives an overview of their function and contents. | |||
5855 | :term:`Build Directory`:: | 5855 | :term:`Build Directory`:: |
5856 | 5856 | ||
5857 | PREMIRRORS:prepend = "\ | 5857 | PREMIRRORS:prepend = "\ |
5858 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 5858 | git://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
5859 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 5859 | ftp://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
5860 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ | 5860 | http://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n \ |
5861 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" | 5861 | https://.*/.* https://downloads.yoctoproject.org/mirror/sources/ \n" |
5862 | 5862 | ||
5863 | These changes cause the | 5863 | These changes cause the |
5864 | build system to intercept Git, FTP, HTTP, and HTTPS requests and | 5864 | build system to intercept Git, FTP, HTTP, and HTTPS requests and |