Authentication
Last updated
Was this helpful?
Chamilo supports multiple authentication methods, from the built-in username/password system to enterprise single sign-on solutions.
All external authentication methods are configured in config/authentication.yaml. A template is provided at config/authentication.dist.yaml. The general structure is:
parameters:
authentication:
<access_url_id>:
<auth_method>:
<provider_name>:
<config_key>: <value>After editing the file, clear and warm the cache:
php bin/console cache:clear
php bin/console cache:warmupExternal login buttons appear on the login page after the cache is refreshed.
OAuth2 — Azure AD, Keycloak, Facebook, and generic OAuth2 providers
Azure Entra ID — Detailed Azure/Entra ID setup: app registration, group-based role mapping, certificate authentication, and user/group sync commands
LDAP — Authenticate against an LDAP or Active Directory server
CAS — Central Authentication Service (legacy, not functional in 3.x)
SCIM — Automated user provisioning from external identity providers
SSO Configuration — Troubleshooting and cross-method notes
By default, Chamilo uses its own internal system — users log in with a username and password stored in the Chamilo database. External methods are additive: the standard login form stays available alongside any configured providers.
For full parameter reference and advanced scenarios, see the External Authentication configuration wiki page.
Last updated
Was this helpful?
Was this helpful?