-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathopidJwt.xml
60 lines (52 loc) · 1.97 KB
/
opidJwt.xml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<server description="opidJWT">
<!-- Enable features -->
<featureManager>
<feature>openidConnectClient-1.0</feature>
</featureManager>
<authFilter id="JwtAuthnoSSLFilter">
<requestHeader id="jwtIvpDemoSsl"
name="ibmRefererUri"
value="/CallRestApiWithJwtDemoWeb/noSsl/InvokeRestWithJwt"
matchType="contains" />
</authFilter>
<!-- Define OIDC Client called RP. -->
<openidConnectClient id="RP"
authFilterRef="JwtAuthnoSSLFilter"
httpsRequired="false"
inboundPropagation="required"
scope="openid profile email photo"
audiences="myZcee"
issuerIdentifier="http://wg31.washington.ibm.com:26212/oidc/endpoint/OP"
signatureAlgorithm="RS256"
trustAliasName="JWT-Signer-Certificate"
trustStoreRef="jwtTrustStore"
authnSessionDisabled="true"
disableLtpaCookie="true">
</openidConnectClient>
<!-- Auth Filter used to match access to our application over SSL -->
<authFilter id="JwtAuthSSLFilter">
<requestHeader id="jwtIvpDemoSsl"
name="ibmRefererUri" matchType="contains"
value="/CallRestApiWithJwtDemoWeb/ssl/InvokeRestWithJwt" />
</authFilter>
<!-- Define OIDC Client called RPssl -->
<openidConnectClient id="RPssl"
httpsRequired="true"
authFilterRef="JwtAuthSSLFilter"
inboundPropagation="required"
scope="openid profile email photo"
audiences="myZcee"
issuerIdentifier="https://wg31.washington.ibm.com:26213/oidc/endpoint/OPssl"
signatureAlgorithm="RS256"
userIdentityToCreateSubject="sub"
trustAliasName="JWT-Signer-Certificate"
trustStoreRef="jwtTrustStore"
authnSessionDisabled="true"
disableLtpaCookie="true">
</openidConnectClient>
<!-- Location of keystore or RACF Keyring that contains
certifcate used to sign JWT created by the OP Server -->
<keyStore fileBased="false" id="jwtTrustStore"
location="safkeyring:///JWT.KeyRing"
password="password" readOnly="true" type="JCERACFKS"/>
</server>