keycloak-scim/server_installation/topics/profiles.adoc

134 lines
2.3 KiB
Text
Raw Normal View History

2018-01-31 09:23:33 +00:00
[[profiles]]
== Profiles
There are features in {project_name} that are not enabled by default, these include features that are not fully
supported. In addition there are some features that are enabled by default, but that can be disabled.
The features that can be enabled and disabled are:
[cols="4*", options="header"]
|===
|Name
|Description
|Enabled by default
|Support level
|account2
|New Account Management Console
|Yes
|Supported
|account_api
|Account Management REST API
|Yes
|Supported
|admin_fine_grained_authz
|Fine-Grained Admin Permissions
|No
|Preview
|ciba
|OpenID Connect Client Initiated Backchannel Authentication (CIBA)
|No
|Preview
|client_policies
|Add client configuration policies
|Yes
|Supported
|docker
|Docker Registry protocol
|No
|Supported
|impersonation
|Ability for admins to impersonate users
|Yes
|Supported
|openshift_integration
|Extension to enable securing OpenShift
|No
|Preview
|scripts
|Write custom authenticators using JavaScript
|No
|Preview
|token_exchange
|Token Exchange Service
|No
|Preview
|upload_scripts
|Upload scripts through the {project_name} REST API
|No
|Deprecated
|web_authn
|W3C Web Authentication (WebAuthn)
ifeval::[{project_community}==true]
|Yes
|Preview
endif::[]
ifeval::[{project_product}==true]
|No
|Preview
endif::[]
|===
To enable all preview features start the server with:
[source]
----
bin/standalone.sh|bat -Dkeycloak.profile=preview
----
You can set this permanently by creating the file `standalone/configuration/profile.properties`
(or `domain/servers/server-one/configuration/profile.properties` for `server-one` in domain mode). Add the following to
the file:
[source]
----
profile=preview
----
To enable a specific feature start the server with:
[source]
----
2017-11-13 10:01:35 +00:00
bin/standalone.sh|bat -Dkeycloak.profile.feature.<feature name>=enabled
----
For example to enable Docker use `-Dkeycloak.profile.feature.docker=enabled`.
You can set this permanently in the `profile.properties` file by adding:
[source]
----
feature.docker=enabled
----
To disable a specific feature start the server with:
[source]
----
bin/standalone.sh|bat -Dkeycloak.profile.feature.<feature name>=disabled
----
For example to disable Impersonation use `-Dkeycloak.profile.feature.impersonation=disabled`.
You can set this permanently in the `profile.properties` file by adding:
[source]
----
feature.impersonation=disabled
----