feat(authelia): init
This commit is contained in:
parent
85f141d226
commit
b2a77bbca1
2 changed files with 135 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue