mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	Solved OIDC sociallogin bug
This commit is contained in:
		| @@ -14,7 +14,7 @@ return array ( | ||||
|     'oidc_login_client_secret' => '{{oidc.client.secret}}', | ||||
|  | ||||
|     // Automatically redirect the login page to the provider | ||||
|     'oidc_login_auto_redirect' => false, | ||||
|     'oidc_login_auto_redirect' => true, | ||||
|  | ||||
|     // Redirect to this page after logging out the user | ||||
|     'oidc_login_logout_url' => 'https://{{domains[application_id]}}', | ||||
| @@ -23,7 +23,7 @@ return array ( | ||||
|     // logout endpoint of the OIDC provider after logout | ||||
|     // in Nextcloud. After successfull logout the OIDC | ||||
|     // provider will redirect back to 'oidc_login_logout_url' (MUST be set). | ||||
|     'oidc_login_end_session_redirect' => false, | ||||
|     'oidc_login_end_session_redirect' => true, | ||||
|  | ||||
|     // Quota to assign if no quota is specified in the OIDC response (bytes) | ||||
|     // | ||||
| @@ -38,7 +38,7 @@ return array ( | ||||
|     'oidc_login_hide_password_form' => true, | ||||
|  | ||||
|     // Use ID Token instead of UserInfo | ||||
|     'oidc_login_use_id_token' => false, | ||||
|     'oidc_login_use_id_token' => true, | ||||
|  | ||||
|     // Attribute map for OIDC response. Available keys are: | ||||
|     //   * id:           Unique identifier for username | ||||
|   | ||||
		Reference in New Issue
	
	Block a user