mirror of
https://github.com/curl/curl.git
synced 2024-12-27 06:59:43 +08:00
e7219c2bdc
Use imperative mood consistently for the first sentence describing an option. "Set this" instead "tell curl to set" or "this sets..." Plus some extra cleanups and rephrasing. Closes #13106
757 B
757 B
c | SPDX-License-Identifier | Long | Arg | Help | Added | Category | Multi | See-also | Example | ||
---|---|---|---|---|---|---|---|---|---|---|---|
Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. | curl | proto-redir | <protocols> | Enable/disable PROTOCOLS on redirect | 7.20.2 | connection curl | single |
|
|
--proto-redir
Limit what protocols to allow on redirects. 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 only allows HTTP, HTTPS, FTP and FTPS on redirects (added in 7.65.2). Specifying all or +all enables all protocols on redirects, which is not good for security.