about summary refs log tree commit diff
path: root/lychee.toml
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-07-04 13:57:59 -0700
committerFranck Cuny <franck@fcuny.net>2024-07-04 13:57:59 -0700
commit185e00e77e05f7fd905962d0555eba9887a8b14a (patch)
treeee32998541716551e7b5f8488c18ac99fef18f9e /lychee.toml
parentadd GHA check (diff)
downloadfcuny.net-185e00e77e05f7fd905962d0555eba9887a8b14a.tar.gz
check for broken links
Diffstat (limited to '')
-rw-r--r--lychee.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/lychee.toml b/lychee.toml
new file mode 100644
index 0000000..52d3842
--- /dev/null
+++ b/lychee.toml
@@ -0,0 +1,21 @@
+# Enable link caching.
+cache = true
+
+# Discard all cached requests older than one day.
+max_cache_age = "1d"
+
+# Maximum number of allowed retries before a link is declared dead.
+max_retries = 3
+
+# User agent to send with each request.
+# https://www.whatismybrowser.com/guides/the-latest-user-agent/chrome
+user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36"
+
+# Minimum wait time in seconds between retries of failed requests.
+retry_wait_time = 3
+
+# Comma-separated list of accepted status codes for valid links.
+accept = [200, 403]
+
+# Exclude all private IPs from checking.
+exclude_all_private = true