|
| 1 | +### |
| 2 | +### Display |
| 3 | +### |
| 4 | +# Verbose program output |
| 5 | +verbose = false |
| 6 | + |
| 7 | +# Show progress |
| 8 | +progress = false |
| 9 | + |
| 10 | + |
| 11 | +### |
| 12 | +### Runtime |
| 13 | +### |
| 14 | +# Number of threads to utilize. |
| 15 | +# Defaults to number of cores available to the system if omitted. |
| 16 | +#threads = 2 |
| 17 | + |
| 18 | +# Maximum number of allowed redirects |
| 19 | +max_redirects = 10 |
| 20 | + |
| 21 | + |
| 22 | +### |
| 23 | +### Requests |
| 24 | +### |
| 25 | +# User agent to send with each request |
| 26 | +user_agent = "curl/7.71.1" |
| 27 | + |
| 28 | +# Website timeout from connect to response finished |
| 29 | +timeout = 9 |
| 30 | + |
| 31 | +# Comma-separated list of accepted status codes for valid links. |
| 32 | +# Omit to accept all response types. |
| 33 | +#accept = "text/html" |
| 34 | + |
| 35 | +# Proceed for server connections considered insecure (invalid TLS) |
| 36 | +insecure = true |
| 37 | + |
| 38 | +# Only test links with the given scheme (e.g. https) |
| 39 | +# Omit to check links with any scheme |
| 40 | +#scheme = "https" |
| 41 | + |
| 42 | +# Request method |
| 43 | +method = "get" |
| 44 | + |
| 45 | +# Custom request headers |
| 46 | +headers = [] |
| 47 | + |
| 48 | + |
| 49 | +### |
| 50 | +### Exclusions |
| 51 | +### |
| 52 | +# Exclude URLs from checking (supports regex) |
| 53 | +exclude = [ |
| 54 | + # "github", todo github token |
| 55 | + "file://.*", |
| 56 | + "host.docker.internal:3100", |
| 57 | + "fileb://.*", |
| 58 | + "ec2-user@.*.compute.amazonaws.com", |
| 59 | + "querier", |
| 60 | + "loki:3100", |
| 61 | + "ip_or_hostname_where_loki_run:3100", |
| 62 | + "dynamodb://.*", |
| 63 | + "s3://.*", |
| 64 | + "ec2-13-59-62-37", |
| 65 | + "promtail.default", |
| 66 | + "loki_addr:3100", |
| 67 | + "localhost", |
| 68 | + "example.com", |
| 69 | + "HelloAkkaHttpServer", |
| 70 | + "https://loki/", |
| 71 | + "http://loki/", |
| 72 | + "logs-prod-us-central1.grafana.net", |
| 73 | + "ip_or_hostname_where_loki_runs", |
| 74 | + "inmemory://", |
| 75 | + "myloki.domain:3100", |
| 76 | + |
| 77 | + "loki.git", |
| 78 | + "https://github.com/grafana/website", |
| 79 | + "https://github.com/settings/keys", |
| 80 | +] |
| 81 | + |
| 82 | +include = [] |
| 83 | + |
| 84 | +# Exclude all private IPs from checking |
| 85 | +# Equivalent to setting `exclude_private`, `exclude_link_local`, and `exclude_loopback` to true |
| 86 | +exclude_all_private = false |
| 87 | + |
| 88 | +# Exclude private IP address ranges from checking |
| 89 | +exclude_private = false |
| 90 | + |
| 91 | +# Exclude link-local IP address range from checking |
| 92 | +exclude_link_local = false |
| 93 | + |
| 94 | +# Exclude loopback IP address range from checking |
| 95 | +exclude_loopback = true |
| 96 | + |
| 97 | +# Exclude all mail addresses from checking |
| 98 | +exclude_mail = false |
0 commit comments