From 6f25e48cbb90dfca7e25c8a7e6a9c85d0cb7fe6e Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 29 Jan 2019 09:47:16 +0000 Subject: [PATCH] ftp: fix docs to note `ftp_proxy` isn't supported --- docs/content/faq.md | 4 ++-- docs/content/ftp.md | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/content/faq.md b/docs/content/faq.md index a471554fb..fa50eb033 100644 --- a/docs/content/faq.md +++ b/docs/content/faq.md @@ -97,8 +97,6 @@ In general the variables are called `http_proxy` (for services reached over `http`) and `https_proxy` (for services reached over `https`). Most public services will be using `https`, but you may wish to set both. -If you ever use `FTP` then you would need to set `ftp_proxy`. - The content of the variable is `protocol://server:port`. The protocol value is the one used to talk to the proxy server, itself, and is commonly either `http` or `socks5`. @@ -122,6 +120,8 @@ e.g. export no_proxy=localhost,127.0.0.0/8,my.host.name export NO_PROXY=$no_proxy +Note that the ftp backend does not support `ftp_proxy` yet. + ### Rclone gives x509: failed to load system roots and no roots provided error ### This means that `rclone` can't file the SSL root certificates. Likely diff --git a/docs/content/ftp.md b/docs/content/ftp.md index 09c0370f5..dafa46542 100644 --- a/docs/content/ftp.md +++ b/docs/content/ftp.md @@ -175,3 +175,6 @@ Note that `--timeout` isn't supported (but `--contimeout` is). Note that `--bind` isn't supported. FTP could support server side move but doesn't yet. + +Note that the ftp backend does not support the `ftp_proxy` environment +variable yet.