mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
e8442e4ffc
- Allow FTPS on redirect.
- Update default allowed redirect protocols in documentation.
Follow-up to 6080ea0
.
Ref: https://github.com/curl/curl/pull/4094
Closes https://github.com/curl/curl/pull/4115
19 lines
747 B
Makefile
19 lines
747 B
Makefile
Long: proto-redir
|
|
Arg: <protocols>
|
|
Help: Enable/disable PROTOCOLS on redirect
|
|
Added: 7.20.2
|
|
---
|
|
Tells curl to limit what protocols it may use on redirect. Protocols denied by
|
|
--proto are not overridden by this option. See --proto for how protocols are
|
|
represented.
|
|
|
|
Example, allow only HTTP and HTTPS on redirect:
|
|
|
|
curl --proto-redir -all,http,https http://example.com
|
|
|
|
By default curl will allow HTTP, HTTPS, FTP and FTPS on redirect (7.65.2).
|
|
Older versions of curl allowed all protocols on redirect except several
|
|
disabled for security reasons: Since 7.19.4 FILE and SCP are disabled, and
|
|
since 7.40.0 SMB and SMBS are also disabled. Specifying \fIall\fP or \fI+all\fP
|
|
enables all protocols on redirect, including those disabled for security.
|