-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapplication.yml
More file actions
39 lines (37 loc) · 1.27 KB
/
application.yml
File metadata and controls
39 lines (37 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#server:
# port: 9443
# ssl:
# key-store: classpath:server.jks
# key-store-password: changeit
# key-store-type: jks
spring:
security:
oauth2:
client:
registration:
demo-basic-client:
client-name: Login with the Curity Identity Server (Basic Client)
client-id: demo-basic-client
client-secret: Secr3t
authorization-grant-type: authorization_code
redirect-uri: "{baseUrl}/login/oauth2/code/{registrationId}"
scope: openid, profile
provider: idsvr
demo-private-jwt-client:
client-name: Login with the Curity Identity Server (Private JWT Client)
client-id: demo-private-jwt-client
client-authentication-method: private_key_jwt
authorization-grant-type: authorization_code
redirect-uri: "{baseUrl}/login/oauth2/code/{registrationId}"
scope: openid, profile
provider: idsvr
provider:
idsvr:
issuer-uri: https://idsvr.example.com/oauth/v2/oauth-anonymous
client:
authentication:
asymmetric-key:
key-store-file-name: demo-private-jwt-client.jks
key-store-password: changeit
key-store-alias: demo-client
key-store-type: jks