authelia clients: remove unused parameters

This commit is contained in:
eyjhb 2024-08-21 21:19:50 +02:00
parent 13a00e6eed
commit 0a8f393f9d
No known key found for this signature in database
GPG key ID: 609F508E3239F920
2 changed files with 0 additions and 12 deletions

View file

@ -98,18 +98,12 @@ in {
services.authelia.instances.main.settings.identity_providers.oidc.clients = [{
client_id = "forgejo";
client_name = "Forgejo";
# authelia crypto hash generate pbkdf2 --variant sha512 --random --random.length 72 --random.charset rfc3986
client_secret = "$pbkdf2-sha512$310000$cOGtLwMHyfugAJCIiUUjfQ$ao7zC8QB1m8aTGNf1dxYbRAPivZ0G1eaJ4bNFVfJiTFZX06U5baBjT0emvoaeFHXMFbYHzorb2/8vxnY/D0b5Q";
public = false;
redirect_uris = [ "https://${config.mine.shared.settings.forgejo.domain}/user/oauth2/${AUTHELIA_AUTH_NAME}/callback" ];
scopes = [
"openid"
"email"
"profile"
];
userinfo_signed_response_alg = "none";
}];
}

View file

@ -199,11 +199,7 @@ in {
services.authelia.instances.main.settings.identity_providers.oidc.clients = [{
client_id = AUTHELIA_AUTH_NAME;
client_name = "Nextcloud";
# authelia crypto hash generate pbkdf2 --variant sha512 --random --random.length 72 --random.charset rfc3986
client_secret = "$pbkdf2-sha512$310000$kLNQ/1A.uasSN4g8q94jUQ$8OKNUNNumHCh8dVG5/QWys7u.y1guqFXlrL.bMm7/HKTsWhpib/W.8qlU6VU7V1Be/h14Y.fJi3RLvbkEdo2kA";
public = false;
redirect_uris = [ "https://${svc_domain}/apps/oidc_login/oidc" ];
scopes = [
"openid"
@ -211,8 +207,6 @@ in {
"email"
"groups"
];
userinfo_signed_response_alg = "none";
}];
services.nginx.virtualHosts."${svc_domain}" = {