feat(authelia): init

This commit is contained in:
Felix Schröter 2025-09-19 23:49:48 +02:00
parent 85f141d226
commit b2a77bbca1
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 135 additions and 0 deletions

View file

@ -197,6 +197,69 @@ in
"profile"
];
}
{
id = "opencloud";
description = "OpenCloud";
public = true;
redirect_uris = [
"https://cloud.felschr.com/"
"https://cloud.felschr.com/oidc-callback.html"
"https://cloud.felschr.com/oidc-silent-redirect.html"
];
scopes = [
"openid"
"email"
"profile"
"groups"
"offline_access"
];
grant_types = [
"refresh_token"
"authorization_code"
];
userinfo_signed_response_alg = "none";
}
{
id = "OpenCloudAndroid";
description = "OpenCloud Android";
public = true;
redirect_uris = [ "oc://android.opencloud.eu" ];
scopes = [
"openid"
"email"
"profile"
"groups"
"offline_access"
];
grant_types = [
"refresh_token"
"authorization_code"
];
response_modes = [ "form_post" ];
userinfo_signed_response_alg = "none";
}
{
id = "OpenCloudDesktop";
description = "OpenCloud Desktop";
public = true;
redirect_uris = [
"http://127.0.0.1"
"http://localhost"
];
scopes = [
"openid"
"email"
"profile"
"groups"
"offline_access"
];
grant_types = [
"refresh_token"
"authorization_code"
];
response_modes = [ "form_post" ];
userinfo_signed_response_alg = "none";
}
{
id = "jellyfin";
description = "Jellyfin";