Skip to content

Commit

Permalink
Merge pull request #795 from openziti/fix-broken-links
Browse files Browse the repository at this point in the history
groom links
  • Loading branch information
qrkourier authored Jan 15, 2024
2 parents 15e034e + aec899d commit 7291a73
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
6 changes: 2 additions & 4 deletions check-links/crawl-for-broken-links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ done<<EOF
EXWPKK5PV4-dsn.algolia.net
www\.google\.com/search
www\.googletagmanager\.com
mermaid-js\.github.io
mermaid\.live
mermaid\.ink
play\.google\.com
apps\.apple\.com
www\.reddit\.com/r/openziti
Expand All @@ -38,14 +35,15 @@ www\.reddit\.com/r/openziti
twitter\.com/(OpenZiggy|OpenZiti)
landing.openziti.io/
fonts.gstatic.com/
github\.com/.*#
EOF
# github\.com/.*/releases/latest/download

EXCLUDE_PATTERN="${EXCLUDE_PATTERN%|}))"

docker run --rm --network=host raviqqe/muffet "${SERVER}" \
--buffer-size=8192 \
--max-connections-per-host=1 \
--max-connections-per-host=${MUFFET_MAX_CONNECTIONS_PER_HOST:-1} \
--header=User-Agent:curl/7.54.0 \
--timeout=20 \
"--exclude=${EXCLUDE_PATTERN}" \
Expand Down
2 changes: 1 addition & 1 deletion docusaurus/docs/learn/introduction/_concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Services can be completely dark if they are implemented with a Ziti SDK. If this

Ziti makes sure that when you connect to a service using a Ziti network, your connection is encrypted from start to
finish. Each connection is secured through public-private-key cryptography provided by
[libsodium](https://libsodium.org). This means that even if your service data is not encrypted on its own, the
[libsodium](https://doc.libsodium.org/). This means that even if your service data is not encrypted on its own, the
connection between the SDKs will be encrypted and only readable by the intended parties. This feature is available in
all applications that use Ziti's SDKs, including Ziti's tunneler, desktop, and mobile applications.

Expand Down
18 changes: 9 additions & 9 deletions docusaurus/docs/reference/developer/sdk/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ Pick your favorite language and start with a tutorial or sample application. You

* Go SDK
* [Samples](https://github.com/openziti/sdk-golang/tree/main/example)
* [Reference](https://github.com/openziti/sdk-golang/#readme)
* [Reference](https://github.com/openziti/sdk-golang/)
* Python SDK
* [Samples](https://github.com/openziti/ziti-sdk-py/tree/main/sample)
* [Reference](https://github.com/openziti/ziti-sdk-py#readme)
* [Reference](https://github.com/openziti/ziti-sdk-py)
* C SDK
* [Samples](https://github.com/openziti/ziti-sdk-c/tree/main/programs)
* [Reference](./ziti-sdk-c.mdx)
* Java SDK
* [Samples](https://github.com/openziti/ziti-sdk-jvm/tree/main/samples)
* [Reference](https://github.com/openziti/ziti-sdk-jvm#readme)
* [Reference](https://github.com/openziti/ziti-sdk-jvm/)
* Android SDK (Kotlin)
* [Sample app](./android.mdx) ([repo](https://github.com/openziti/ziti-android-app))
* [Reference](https://github.com/openziti/ziti-sdk-android#readme)
* [Javascript SDK](https://github.com/openziti/ziti-sdk-js#readme)
* [Node.js SDK](https://github.com/openziti/ziti-sdk-nodejs)
* [Reference](https://github.com/openziti/ziti-sdk-android/)
* [Javascript SDK](https://github.com/openziti/ziti-sdk-js/)
* [Node.js SDK](https://github.com/openziti/ziti-sdk-nodejs/)
* C# SDK
* [Repo](https://github.com/openziti/ziti-sdk-csharp#readme)
* [Repo](https://github.com/openziti/ziti-sdk-csharp/)
* [Reference](./ziti-sdk-csharp.mdx)
* iOS SDK (Swift)
* [Repo](https://github.com/openziti/ziti-sdk-swift#readme)
* [Reference](./ziti-sdk-swift.mdx)
* [Repo](https://github.com/openziti/ziti-sdk-swift/)
* [Reference](./ziti-sdk-swift.mdx)

## Tunneler SDK

Expand Down

0 comments on commit 7291a73

Please sign in to comment.