-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// config for https://github.com/ennru/site-link-validator/ | ||
site-link-validator { | ||
root-dir = "./akka-distributed-cluster-docs/target/paradox/site/main/" | ||
# relative to `root-dir` | ||
start-file = "index.html" | ||
|
||
# Resolves URLs with the given prefix as local files instead | ||
link-mappings = [ | ||
{ | ||
prefix = "https://doc.akka.io/libraries/akka-distributed-cluster/snapshot/" | ||
replace = "/docs/akka-distributed-cluster/snapshot/" | ||
} | ||
{ | ||
prefix = "https://doc.akka.io/api/akka-distributed-cluster/snapshot/" | ||
replace = "/api/akka-distributed-cluster/snapshot/" | ||
} | ||
] | ||
|
||
ignore-missing-local-files-regex = "" | ||
|
||
ignore-files = [] | ||
|
||
ignore-prefixes = [ | ||
# Fails after a number of requests with "403 Forbidden" | ||
"https://javadoc.io/static/" | ||
# GitHub will block with "429 Too Many Requests" | ||
"https://github.com/" | ||
# MVN repository forbids access after a few requests | ||
"https://mvnrepository.com/artifact/" | ||
# link checker is using HEAD requests, which isn't supported by the repo index | ||
"https://repo.akka.io/" | ||
] | ||
|
||
non-https-whitelist = [ | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// config for https://github.com/ennru/site-link-validator/ | ||
site-link-validator { | ||
root-dir = "./akka-edge-docs/target/paradox/site/main/" | ||
# relative to `root-dir` | ||
start-file = "index.html" | ||
|
||
# Resolves URLs with the given prefix as local files instead | ||
link-mappings = [ | ||
{ | ||
prefix = "https://doc.akka.io/libraries/akka-edge/snapshot/" | ||
replace = "/docs/akka-edge/snapshot/" | ||
} | ||
{ | ||
prefix = "https://doc.akka.io/api/akka-edge/snapshot/" | ||
replace = "/api/akka-edge/snapshot/" | ||
} | ||
] | ||
|
||
ignore-missing-local-files-regex = "" | ||
|
||
ignore-files = [] | ||
|
||
ignore-prefixes = [ | ||
# Fails after a number of requests with "403 Forbidden" | ||
"https://javadoc.io/static/" | ||
# GitHub will block with "429 Too Many Requests" | ||
"https://github.com/" | ||
# MVN repository forbids access after a few requests | ||
"https://mvnrepository.com/artifact/" | ||
# link checker is using HEAD requests, which isn't supported by the repo index | ||
"https://repo.akka.io/", | ||
"http://localhost:8081/" | ||
] | ||
|
||
non-https-whitelist = [ | ||
] | ||
} |