File: checklink.conf

package info (click to toggle)
w3c-linkchecker 4.81-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 432 kB
  • ctags: 88
  • sloc: perl: 2,378; sh: 62; makefile: 12
file content (72 lines) | stat: -rw-r--r-- 2,581 bytes parent folder | download | duplicates (4)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# Configuration file for the W3C Link Checker
#
# See Config::General(3) for the syntax; 'SplitPolicy' is 'equalsign' here.
#

#
# Trusted is a regular expression for matching "trusted" domains.  This is
# used to restrict the domains where HTTP basic authentication will be sent.
# This is matched case insensitively against resoures' hostnames.
#
# Not specifying a value here means that the basic authentication will only
# be sent to the same host where the authentication was requested from.
#
# For example, the following would allow sending the authentication to any
# host in the w3.org domain (and *only* there):
# Trusted = \.w3\.org$


#
# Allow_Private_IPs is a boolean flag (1/0) for specifying whether checking of
# links to non-public RFC 1918 IP addresses is allowed.
#
# The default, ie. not specifying the value here means that checking links
# on non-public IP addresses is disabled when checklink runs as a CGI script,
# and allowed in command line mode.
#
# For example, the following would disallow private IP addresses regardless
# of the mode:
# Allow_Private_IPs = 0


#
# Markup_Validator_URI and CSS_Validator_URI are formatted URIs to the
# respective validators.  The %s in these will be replaced with the full
# "URI encoded" URI to the document being checked, and shown in the link
# checker results view in the online/CGI version.
#
# Defaults:
# Markup_Validator_URI = http://validator.w3.org/check?uri=%s
# CSS_Validator_URI = http://jigsaw.w3.org/css-validator/validator?uri=%s


#
# Doc_URI is the URI to the Link Checker documentation, shown in the
# results report in CGI mode, and the usage message in command line mode.
# The URIs to the CSS and JavaScript files in the generated HTML are also
# formed using this as their base URI. This setting also controls the
# location other resources used by this script.
# So if you wish to use this Link Checker instance via the webiterface
# from a different host, you will need to change this setting.
# This must be an absolute URI.
#
# Default:
Doc_URI = http://localhost/w3c-linkchecker/docs/checklink.html

#
# Forbidden_Protocols is a comma separated list of additional protocols/URI
# schemes that the link checker is not allowed to use.  The javascript and
# mailto schemes are always forbidden, and so is the file scheme when running
# as a CGI script.
#
# Default:
# Forbidden_Protocols = javascript,mailto


#
# Connection_Cache_Size is an integer denoting the maximum number of
# connections the link checker will keep open at any given time.
#
# Default:
# Connection_Cache_Size = 2