Cloudflare Zero Trust
This documentation is maintained by the community, it is not guaranteed to be complete or up-to-date.
We always recommend users read the third-party documentation as part of the integration process to ensure the configuration matches their needs and as such we always link the documentation if available.
If you find an error in this documentation please either make a GitHub Pull Request or start a GitHub Discussion.
Tested Versions
Before You Begin
You are required to utilize a unique client id and a unique and random client secret for all OpenID Connect relying parties. You should not use the client secret in this example, you should randomly generate one yourself. You may also choose to utilize a different client id, it’s completely up to you.
This example makes the following assumptions:
- Cloudflare Team Name:
example-team
- Authelia Root URL:
https://auth.example.com
- Client ID:
cloudflare
- Client Secret:
cloudflare_client_secret
Configuration
Application
To configure Cloudflare Zero Trust to utilize Authelia as an OpenID Connect Provider:
- Visit the Cloudflare Zero Trust Dashboard
- Visit
Settings
- Visit
Authentication
- Under
Login nethods
selectAdd new
- Select
OpenID Connect
- Enter the following values:
- Name:
Authelia
- App ID:
cloudflare
- Client Secret:
cloudflare_client_secret
- Auth URL:
https://auth.example.com/api/oidc/authorization
- Token URL:
https://auth.example.com/api/oidc/token
- Certificate URL:
https://auth.example.com/jwks.json
- Add the following OIDC Claims:
preferred_username
,mail
,groups
- Name:
- Click Save
Authelia
The following YAML configuration is an example Authelia client configuration for use with Cloudflare which will operate with the above example:
- id: cloudflare
secret: cloudflare_client_secret
public: false
authorization_policy: two_factor
scopes:
- openid
- profile
- groups
- email
redirect_uris:
- https://example-team.cloudflareaccess.com/cdn-cgi/access/callback
userinfo_signing_algorithm: none