|
1 | 1 | PORT = 8090 |
2 | | -BASEURL = "https://localhost:{}".format(PORT) |
| 2 | +BASEURL = "https://127.0.0.1:{}".format(PORT) |
3 | 3 |
|
4 | 4 | # If BASE is https these has to be specified |
5 | 5 | SERVER_CERT = "certs/cert.pem" |
|
61 | 61 | # support dynamic discovery and registration. |
62 | 62 | "": CLIENT_CONFIG, |
63 | 63 | "filip": { |
64 | | - 'issuer':"https://guarded-cliffs-8635.herokuapp.com/", |
| 64 | + 'issuer': "https://guarded-cliffs-8635.herokuapp.com/", |
65 | 65 | "redirect_uris": ["{}/authz_cb/filip".format(BASEURL)], |
66 | 66 | "post_logout_redirect_uris": ["{}/session_logout".format(BASEURL)], |
67 | 67 | "client_preferences": DEFAULT_CLIENT_PREFS, |
|
70 | 70 | "backchannel_logout_uri": "{}/bc_logout".format(BASEURL) |
71 | 71 | }, |
72 | 72 | "flop": { |
73 | | - 'issuer':"https://127.0.0.1:5000/", |
| 73 | + 'issuer': "https://127.0.0.1:5000/", |
74 | 74 | "redirect_uris": ["{}/authz_cb/flop".format(BASEURL)], |
75 | 75 | "post_logout_redirect_uris": ["{}/session_logout".format(BASEURL)], |
76 | 76 | "client_preferences": DEFAULT_CLIENT_PREFS, |
|
86 | 86 | "services": DEFAULT_SERVICES, |
87 | 87 | # "backchannel_logout_session_required": True, |
88 | 88 | "backchannel_logout_uri": "{}/bc_logout".format(BASEURL) |
| 89 | + }, |
| 90 | + 'bobcat': { |
| 91 | + 'issuer': 'https://127.0.0.1:8443/', |
| 92 | + "client_id": "client3", |
| 93 | + "client_secret": "2222222222222222222222222222222222222222", |
| 94 | + "redirect_uris": ["{}/authz_cb/bobcat".format(BASEURL)], |
| 95 | + "client_preferences": { |
| 96 | + "response_types": ["code"], |
| 97 | + "scope": ["openid", "offline_access"], |
| 98 | + "token_endpoint_auth_method": "client_secret_basic" |
| 99 | + }, |
| 100 | + "services": { |
| 101 | + 'ProviderInfoDiscovery': {}, 'Authorization': {}, 'AccessToken': {}, |
| 102 | + 'RefreshAccessToken': {} |
| 103 | + } |
89 | 104 | } |
90 | 105 | } |
91 | 106 |
|
|
0 commit comments