Skip to content

Commit cd1071f

Browse files
committed
Update library link
1 parent afc9f70 commit cd1071f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/reference/auth-webhook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The authentication webhook is a simple JSON `POST` request to which the server m
4646
We have an [OpenAPI document](../api/authconfig) available for the authentication and configuration server. You can check the exact values available there, or use the OpenAPI document to generate parts of your server code.
4747

4848
!!! tip
49-
We provide a [Go library](https://github.com/ContainerSSH/libcontainerssh) to create an authentication server.
49+
We provide a [Go library](https://github.com/ContainerSSH/ContainerSSH?tab=readme-ov-file#building-a-configuration-webhook-server) to create an authentication server.
5050

5151
!!! warning
5252
A warning about rate limiting: if the authentication server desires to do rate limiting for connecting users it should take into account that a user is allowed to try multiple authentication attempts (currently hard-coded to 6 per connection) before they are disconnected. Some of the authentication attempts (e.g. public keys) happen automatically on the client side without the user having any influence on them. Furthermore, ContainerSSH retries failed HTTP calls. To be effective the authentication server should count the unique connection identifiers seen in the `connectionId` field and implement a lock-out based on these.
@@ -155,5 +155,5 @@ All endpoints need to respond with an `application/json` response of the followi
155155
```
156156

157157
!!! tip
158-
We provide a [Go library to implement an authentication server](https://github.com/containerssh/libcontainerssh).
158+
We provide a [Go library to implement an authentication server](https://github.com/ContainerSSH/ContainerSSH?tab=readme-ov-file#building-a-configuration-webhook-server).
159159

docs/reference/configserver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The configuration webhook is a simple JSON `POST` request to which the server mu
2323
We have an [OpenAPI document](../api/authconfig) available for the authentication and configuration server. You can check the exact values available there, or use the OpenAPI document to generate parts of your server code.
2424

2525
!!! tip
26-
We provide a [Go library](https://github.com/ContainerSSH/libcontainerssh) to create a configuration server.
26+
We provide a [Go library](https://github.com/ContainerSSH/ContainerSSH?tab=readme-ov-file#building-a-configuration-webhook-server) to create a configuration server.
2727

2828
The config server will receive a request in following format:
2929

@@ -93,4 +93,4 @@ Currently only the following options can be set from the configuration server:
9393
- [Security](security.md)
9494

9595
!!! tip
96-
We provide a [Go library to implement a config server](https://github.com/containerssh/libcontainerssh).
96+
We provide a [Go library to implement a config server](https://github.com/ContainerSSH/ContainerSSH?tab=readme-ov-file#building-a-configuration-webhook-server).

0 commit comments

Comments
 (0)