Skip to content

Commit

Permalink
docs: Fix help.github.com link check
Browse files Browse the repository at this point in the history
For some reason, help.github.com will only serve compressed content, and
will reply with a 403 error without any "Accept-encoding" headers.
This causes 'make docs_check_links' to report help.github.com links as being
dead.
This is tracked in github/docs#17358

For this fix to work, quay.io/crcont/docs-builder:latest must be rebuilt
and pushed to quay.
This can be rebuilt and tested locally with:

$ (cd images/docs-builder && podman build -t quay.io/crcont/docs-builder:latest .)
$ make docs_check_links
  • Loading branch information
cfergeau authored and praveenkumar committed Apr 29, 2022
1 parent c57f022 commit 5565077
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions images/docs-builder/asciidoc-link-check-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@
{ "pattern": "^http://api.crc.testing" },
{ "pattern": "https://console-openshift-console.apps-crc.testing" },
{ "pattern": "http://proxy.example.com" }
],
"httpHeaders": [
{
"urls": ["https://help.github.com"],
"headers": {
"Accept-Encoding": "gzip, deflate"
}
}
]
}

0 comments on commit 5565077

Please sign in to comment.