From 76e02bf26d681360ec09625cf0797bab173b66f2 Mon Sep 17 00:00:00 2001 From: poprhythm Date: Sun, 29 Mar 2026 18:59:51 +0000 Subject: [PATCH] authelia: add ownCloud iOS OIDC client to git config --- authelia/config/configuration.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/authelia/config/configuration.yaml b/authelia/config/configuration.yaml index 91c36a9..cd9cf8c 100644 --- a/authelia/config/configuration.yaml +++ b/authelia/config/configuration.yaml @@ -134,6 +134,28 @@ identity_providers: - groups - offline_access userinfo_signed_response_alg: none + - client_id: mxd5OQDk6es5LzOzRvidJNfXLUZS2oN3oUFeXPP8LpPrhx3UroJFduGEYIBOxkY1 + client_name: ownCloud iOS + client_secret: '{{ secret "/config/secrets/oidc_ocis_ios" }}' + public: false + require_pkce: true + pkce_challenge_method: S256 + token_endpoint_auth_method: client_secret_basic + authorization_policy: one_factor + response_types: + - code + grant_types: + - authorization_code + - refresh_token + redirect_uris: + - oc://ios.owncloud.com + scopes: + - openid + - profile + - email + - offline_access + userinfo_signed_response_alg: none + - client_id: xdXOt13JKxym1B1QcEncf2XDkLAexMBFwiT9j6EfhhHFJhs2KM9jbjTmf8JBXE69 client_name: ownCloud Desktop client_secret: '{{ secret "/config/secrets/oidc_ocis_desktop" }}'