Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,14 @@ After deployment, verify that the browser connection details show `X25519MLKEM76
Updating a TLS certificate can be accessed through the CLI by using the following command:

```shell
akeyless gateway-update-tls-cert --gateway-url 'https://Your-Akeyless-Gateway-URL:8000' --cert-data <TLS Certificate(base64-encoded)>
akeyless gateway-update-tls-cert \
--cert-data <TLS Certificate (base64-encoded)> \
--key-data <TLS Private Key (base64-encoded)> \
--gateway-url 'https://<Your-Akeyless-GW-URL>:8000'
```

This command requires both a TLS certificate and a matching TLS private key.

The command's full parameters are:

* `cert-data`: TLS Certificate (Base64-encoded), this flag is ignored if `cert-file-name` is supplied.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ The Akeyless Serverless Gateway does not support:
* [Caching](https://docs.akeyless.io/docs/configure-the-gateway-cache)
* [Automatic Migration](https://docs.akeyless.io/docs/automatic-migration)
* Event on Gateway status change
* [TLS Configuration](https://docs.akeyless.io/docs/tls-certificate)
* [TLS Configuration](https://docs.akeyless.io/docs/gateway-tls-settings)
* To enable **CLI access** (for example, to create or retrieve a Dynamic Secret), set the `AKEYLESS_GATEWAY_URL` environment variable to the Gateway endpoint in the following format:

```shell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ To configure your Akeyless Gateway:
* [Caching](https://docs.akeyless.io/docs/configure-the-gateway-cache)
* [Automatic Migration](https://docs.akeyless.io/docs/automatic-migration)
* Event on Gateway Status Change
* [TLS Configuration](https://docs.akeyless.io/docs/tls-certificate).
* [TLS Configuration](https://docs.akeyless.io/docs/gateway-tls-settings).
* To enable **CLI access** (for example, to create or retrieve a Dynamic Secret), set the `AKEYLESS_GATEWAY_URL` environment variable to the Gateway endpoint in the following format:

```shell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ TLSConf:
tlsPrivateKeySecretKeyName: tlsPrivateKey
```

Alternatively, you can also [configure TLS](https://docs.akeyless.io/docs/tls-certificate) using the web interface of the Gateway Configuration Manager.
Alternatively, you can also [configure TLS](https://docs.akeyless.io/docs/gateway-tls-settings) using the web interface of the Gateway Configuration Manager.

### TLS 1.3 and PQC on Any Cloud Platform

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ With the following parameters, you can mount the TLS certificate and the TLS pri

* `-v $PWD/key.pem:/home/akeyless/.akeyless/akeyless-api-cert.key`

It is also possible to [Set up TLS](https://docs.akeyless.io/docs/tls-certificate) in the Gateway Configuration Manager after the Gateway is deployed.
It is also possible to [set up TLS](https://docs.akeyless.io/docs/gateway-tls-settings) in the Gateway Configuration Manager after the Gateway is deployed.

### TLS and PQC Verification on Gateway

Expand Down
Loading