-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.wgetrc
40 lines (28 loc) · 1.19 KB
/
.wgetrc
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
# add a `.html` extension to `text/html` or `application/xhtml+xml` files that
# lack one, or a `.css` extension to `text/css` files that lack one
adjust_extension = on
# force continuation of preexistent partially retrieved files
continue = on
# follow FTP links from HTML documents by default
follow_ftp = on
# do not create a HSTS database
hsts-file = /dev/null
# do not go up in the directory structure when downloading recursively
no_parent = on
# maximum number of redirections to follow for a resource
max_redirect = 10
# retry even when the connection was refused
retry_connrefused = on
# ignore robots.txt and <meta name=robots content=nofollow>
robots = off
# wait 60 seconds before timing out. This applies to all timeouts: DNS, connect
# and read. Default read timeout is 15 min
timeout = 60
# use the server-provided last modification date, if available
timestamping = on
# retry a few times when a download fails, but don’t overdo it. Default is 20
tries = 3
# use the last component of a redirection URL for the local file name
trust_server_names = on
# identify as a different client to the HTTP server
user_agent = Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0