Yes. curl
has two options, --connect-timeout
and --max-time
.
Quoting from the manpage:
--connect-timeout <seconds>
Maximum time in seconds that you allow the connection to the
server to take. This only limits the connection phase, once
curl has connected this option is of no more use. Since 7.32.0,
this option accepts decimal values, but the actual timeout will
decrease in accuracy as the specified timeout increases in deci‐
mal precision. See also the -m, --max-time option.
If this option is used several times, the last one will be used.
and:
-m, --max-time <seconds>
Maximum time in seconds that you allow the whole operation to
take. This is useful for preventing your batch jobs from hang‐
ing for hours due to slow networks or links going down. Since
7.32.0, this option accepts decimal values, but the actual time‐
out will decrease in accuracy as the specified timeout increases
in decimal precision. See also the --connect-timeout option.
If this option is used several times, the last one will be used.
You are probably interested in the latter option, --max-time
, and should set it to 900
(15 minutes). But specifying the first option, --connect-timeout
, to something like 60
(one minute) might also be a good idea. Otherwise curl
won't return if the server is down.
The default value for --connect-timeout
seems to be 5 minutes according to the DEFAULT_CONNECT_TIMEOUT
macro in lib/connect.h. A default --max-time
doesn't seem to exist.