From 58e32699b0a3713cc7e40ef39fa538cc1560dd07 Mon Sep 17 00:00:00 2001 From: nicko170 Date: Mon, 20 Mar 2023 16:38:30 +1100 Subject: [PATCH] Update SETUP.md This really messed me up. --- SETUP.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SETUP.md b/SETUP.md index b250cf9..091e773 100644 --- a/SETUP.md +++ b/SETUP.md @@ -124,7 +124,7 @@ https://example.com { 2. Set `AUTH_TYPE` environment variable in your docker-compose.yml to `oidc` and set the following: * `OIDC_AUTH_URL` should be set to your providers well-known endpoint. For example, Authelia is `https://[YourAuthDomain]/.well-known/openid-configuration`. * `OIDC_CLIENT_ID` is the `id` in your Authelia configuration.yaml. In this case, it would be `headscale-webui`. - * `OIDC_SECRET` is your client secret, in this case `[SECRET]`. You can generate a secret using `openssl rand -hex 64`. + * `OIDC_CLIENT_SECRET` is your client secret, in this case `[SECRET]`. You can generate a secret using `openssl rand -hex 64`. ### KeyCloak 1. In your Keycloak settings, add the following: @@ -138,6 +138,6 @@ Client Secret = [SECRET] 2. Set `AUTH_TYPE` environment variable in your docker-compose.yml to `oidc` and set the following: * `OIDC_AUTH_URL` should be set to your providers well-known endpoint. For example, Keycloak is `https://[DOMAIN]/realms/[REALM]/.well-known/openid-configuration`. * `OIDC_CLIENT_ID` is the `id` in your Authelia configuration.yaml. In this case, it would be `headscale-webui`. - * `OIDC_SECRET` is your client secret, in this case `[SECRET]`. You can generate a secret using `openssl rand -hex 64`. + * `OIDC_CLIENT_SECRET` is your client secret, in this case `[SECRET]`. You can generate a secret using `openssl rand -hex 64`. ---