Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
devel:documentation:application_configuration:dev:backend [2023/12/01 11:13]
chalupat [Authentication]
devel:documentation:application_configuration:dev:backend [2023/12/01 12:42]
chalupat [Authentication]
Line 1085: Line 1085:
  
 @since 13.1.0 [[this>devel/documentation/security/dev/security#oidc_authentication|OIDC authentication]] can be configured with following properties: @since 13.1.0 [[this>devel/documentation/security/dev/security#oidc_authentication|OIDC authentication]] can be configured with following properties:
-<code> 
  
 +<code properties>
 # Enable authentication via OIDC when false IDM will return 503 SERVICE_UNAVAILABLE on enpoints used for OICD auth, and ignore any Bearer token. Default: false # Enable authentication via OIDC when false IDM will return 503 SERVICE_UNAVAILABLE on enpoints used for OICD auth, and ignore any Bearer token. Default: false
 idm.pub.core.oidc.enabled=false idm.pub.core.oidc.enabled=false
Line 1102: Line 1102:
 idm.sec.core.oidc.token-path=/token idm.sec.core.oidc.token-path=/token
  
-​​​​​# Configuration for spring.security most is gotten from auto-discover endpoitn (${idm.sec.core.oidc.url}/.well-known/openid-configuration) but can be overiten here+​​​​​# Configuration for spring.security most is gotten from auto-discover endpoint (${idm.sec.core.oidc.url}/.well-known/openid-configuration) but can be overwritten here
 spring.security.oauth2.client.registration.cas.client-id=${idm.sec.core.oidc.client-id} spring.security.oauth2.client.registration.cas.client-id=${idm.sec.core.oidc.client-id}
 spring.security.oauth2.client.registration.cas.client-secret=${idm.sec.core.oidc.client-secret} spring.security.oauth2.client.registration.cas.client-secret=${idm.sec.core.oidc.client-secret}
Line 1113: Line 1113:
 #spring.security.oauth2.client.provider.cas.token-uri=${idm.sec.core.oidc.token-path} #spring.security.oauth2.client.provider.cas.token-uri=${idm.sec.core.oidc.token-path}
 #spring.security.oauth2.client.provider.cas.authorization-uri=${idm.sec.core.oidc.login-path} #spring.security.oauth2.client.provider.cas.authorization-uri=${idm.sec.core.oidc.login-path}
 +
  
 </code> </code>
  • by chalupat