diff options
author | Modestas Vainius <modestas@vainius.eu> | 2013-04-07 22:10:39 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-12 08:52:23 -0700 |
commit | 4bc444eb64173f770c1d1dba2ed3db393c2a9b18 (patch) | |
tree | 493e7612a19fb8264c4f8db8c5535df7d396ca80 /Documentation/config.txt | |
parent | 5234b41f68ca1ab788513fdc059f9f2e01fd3f6e (diff) | |
download | git-4bc444eb64173f770c1d1dba2ed3db393c2a9b18.tar.gz |
Support FTP-over-SSL/TLS for regular FTP
Add a boolean http.sslTry option which allows to enable AUTH SSL/TLS and
encrypted data transfers when connecting via regular FTP protocol.
Default is false since it might trigger certificate verification errors on
misconfigured servers.
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index bc750d5794..f2ef441f2d 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1447,6 +1447,14 @@ http.sslCAPath:: with when fetching or pushing over HTTPS. Can be overridden by the 'GIT_SSL_CAPATH' environment variable. +http.sslTry:: + Attempt to use AUTH SSL/TLS and encrypted data transfers + when connecting via regular FTP protocol. This might be needed + if the FTP server requires it for security reasons or you wish + to connect securely whenever remote FTP server supports it. + Default is false since it might trigger certificate verification + errors on misconfigured servers. + http.maxRequests:: How many HTTP requests to launch in parallel. Can be overridden by the 'GIT_HTTP_MAX_REQUESTS' environment variable. Default is 5. |