diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2016-02-04 08:59:03 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-04 23:22:49 +0000 |
commit | 9d2925eb81bcb8a99da817b6ce77a8dc758be833 (patch) | |
tree | 6d4865215b310f69e15f3020b079a2ccd5f379af | |
parent | 29a44da99bd390805bd7a2fd70f70417cf7b89ac (diff) | |
download | poky-9d2925eb81bcb8a99da817b6ce77a8dc758be833.tar.gz |
ref-manual: Updated FAQ entry regarding Proxy for SOCKS
Fixes [YOCTO #8637]
Added an example to the section for https_proxy.
Also added a small example section for SOCKS proxy.
Reported-by: Liam R. Howlett <liam.howlett@windriver.com>
(From yocto-docs rev: e17510f1209660b934e27f52a3e5c01a1f213453)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/ref-manual/faq.xml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/documentation/ref-manual/faq.xml b/documentation/ref-manual/faq.xml index 197d490745..c51c67598a 100644 --- a/documentation/ref-manual/faq.xml +++ b/documentation/ref-manual/faq.xml | |||
@@ -286,13 +286,22 @@ | |||
286 | </question> | 286 | </question> |
287 | <answer> | 287 | <answer> |
288 | <para> | 288 | <para> |
289 | Most source fetching by the OpenEmbedded build system is done by <filename>wget</filename> | 289 | Most source fetching by the OpenEmbedded build system is done |
290 | and you therefore need to specify the proxy settings in a | 290 | by <filename>wget</filename> and you therefore need to specify |
291 | <filename>.wgetrc</filename> file in your home directory. | 291 | the proxy settings in a <filename>.wgetrc</filename> file |
292 | Here are some example settings: | 292 | in your home directory. |
293 | Following are some example settings for different proxy types: | ||
293 | <literallayout class='monospaced'> | 294 | <literallayout class='monospaced'> |
294 | http_proxy = http://proxy.yoyodyne.com:18023/ | 295 | Http/FTP proxy: |
295 | ftp_proxy = http://proxy.yoyodyne.com:18023/ | 296 | https_proxy = http://proxy.yoyodyne.com:18023/ |
297 | http_proxy = http://proxy.yoyodyne.com:18023/ | ||
298 | ftp_proxy = http://proxy.yoyodyne.com:18023/ | ||
299 | |||
300 | socks proxy: | ||
301 | export SOCKS_SERVER=`<replaceable>server</replaceable>:<replaceable>port</replaceable>` | ||
302 | unset http_proxy | ||
303 | unset https_proxy | ||
304 | unset ftp_proxy | ||
296 | </literallayout> | 305 | </literallayout> |
297 | The Yocto Project also includes a | 306 | The Yocto Project also includes a |
298 | <filename>site.conf.sample</filename> file that shows how to | 307 | <filename>site.conf.sample</filename> file that shows how to |