Skip to content

Commit

Permalink
update lychee config to allow 401 responses
Browse files Browse the repository at this point in the history
  • Loading branch information
markdboyd committed Nov 30, 2023
1 parent 2c09ea5 commit 10713d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ timeout = 20
# Comma-separated list of accepted status codes for valid links.
# Omit to accept all response types.

# Accept 403 responses because "access denied" responses don't necessarily
# Accept 401/403 responses because "access denied" responses don't necessarily
# indicate a bad link.
#
# Accept 429 responses. They come from GitHub when you are sending too
# many requests and get throttled. They don't indicate a bad link.
# See https://github.com/lycheeverse/lychee/issues/367.
accept = "200,403,429"
accept = "200,403,429,401"

# Proceed for server connections considered insecure (invalid TLS)
insecure = false
Expand Down

0 comments on commit 10713d5

Please sign in to comment.