-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgoidc.json.example
43 lines (43 loc) · 1.01 KB
/
goidc.json.example
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
{
"proxy": {
"target": "https://httpbin.org",
"insecure_skip_verify": false
},
"engine": {
"client_id": "00000-0000-000-000-00",
"client_secret": "00000-0000-000-000-00",
"issuer_url": "https://auth.dataporten.no",
"redirect_url": "http://localhost:8888/oauth2/callback",
"scopes": "userid,groups",
"signkey": "testtesttesttest",
"groups_claim": "principals",
"username_claim": "sub",
"groups_endpoint": "https://groups-api.dataporten.no/groups/me/groups",
"token_type": "oauth2",
"jwt_token_issuer": "https://jwt.example.no",
"logout_redirect_url": "https://uninett.no",
"xhr_endpoints": "",
"authorized_principals": "",
"use_request_host": false,
"twofactor": {
"all": false,
"principals": "",
"acr_values": "",
"backend": ""
},
"logging": {
"level": "debug"
}
},
"server": {
"port": 8888,
"health_port": 1337,
"cert": "cert.pem",
"key": "key.pem",
"readtimeout": 10,
"writetimeout": 20,
"idletimeout": 120,
"ssl": false,
"secure_cookie": false
}
}