-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.curlrc
42 lines (30 loc) · 798 Bytes
/
.curlrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Take filename from the URL, like wget.
remote-name-all
# Create the necessary local directory hierarchy as needed.
create-dirs
# Support gzip responses.
compressed
# FTP setup.
ftp-create-dirs
ftp-ssl
ftp-pasv
ftp-method = nocwd
# Limit the time (in seconds) the connection to the server is allowed to take.
connect-timeout = 120
# Follow HTTP redirects.
location
# Limit the time (in seconds) the whole operation is allowed to take
# (prevents cURL from hanging due to slow networks or links going down).
max-time = 120
# Display transfer progress as a progress bar.
progress-bar
# Follow redirects.
location
# Verbose mode.
verbose
# Trace the time taken.
trace-time
# Write the trace data to stdout.
trace-ascii -
# Enable insecure mode if certification validation fails.
insecure