1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# adopted from https://github.com/goreleaser/goreleaser/blob/5adf43295767b5be05fa38a01ffb3ad25bd21797/www/htmltest.yml
# using https://github.com/wjdp/htmltest
DirectoryPath: ./site
IgnoreURLs:
- fonts.gstatic.com
- linkedin.com
# ignoring due to too many 429 even w/ concurrency set to 1
- github.com
IgnoreDirectoryMissingTrailingSlash: true
IgnoreAltMissing: true
IgnoreSSLVerify: true
IgnoreDirs:
- overrides
IgnoreInternalEmptyHash: true
ExternalTimeout: 60
HTTPHeaders:
"Range": "bytes=0-10"
"Accept": "*/*"
CacheExpires: "96h"
HTTPConcurrencyLimit: 1
|