authelia clients: remove unused parameters
This commit is contained in:
parent
13a00e6eed
commit
0a8f393f9d
2 changed files with 0 additions and 12 deletions
|
@ -98,18 +98,12 @@ in {
|
||||||
services.authelia.instances.main.settings.identity_providers.oidc.clients = [{
|
services.authelia.instances.main.settings.identity_providers.oidc.clients = [{
|
||||||
client_id = "forgejo";
|
client_id = "forgejo";
|
||||||
client_name = "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";
|
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" ];
|
redirect_uris = [ "https://${config.mine.shared.settings.forgejo.domain}/user/oauth2/${AUTHELIA_AUTH_NAME}/callback" ];
|
||||||
scopes = [
|
scopes = [
|
||||||
"openid"
|
"openid"
|
||||||
"email"
|
"email"
|
||||||
"profile"
|
"profile"
|
||||||
];
|
];
|
||||||
|
|
||||||
userinfo_signed_response_alg = "none";
|
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,11 +199,7 @@ in {
|
||||||
services.authelia.instances.main.settings.identity_providers.oidc.clients = [{
|
services.authelia.instances.main.settings.identity_providers.oidc.clients = [{
|
||||||
client_id = AUTHELIA_AUTH_NAME;
|
client_id = AUTHELIA_AUTH_NAME;
|
||||||
client_name = "Nextcloud";
|
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";
|
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" ];
|
redirect_uris = [ "https://${svc_domain}/apps/oidc_login/oidc" ];
|
||||||
scopes = [
|
scopes = [
|
||||||
"openid"
|
"openid"
|
||||||
|
@ -211,8 +207,6 @@ in {
|
||||||
"email"
|
"email"
|
||||||
"groups"
|
"groups"
|
||||||
];
|
];
|
||||||
|
|
||||||
userinfo_signed_response_alg = "none";
|
|
||||||
}];
|
}];
|
||||||
|
|
||||||
services.nginx.virtualHosts."${svc_domain}" = {
|
services.nginx.virtualHosts."${svc_domain}" = {
|
||||||
|
|
Loading…
Reference in a new issue