forked from mystiq/dex
1ee7d6c5f4
oauth2_proxy is a proxy you can put in front of any http application to add OAUTH 2.0 auth. I have added OIDC support to this proxy and to make it easy to get started lets add it to the fixture.
17 lines
355 B
JSON
17 lines
355 B
JSON
[
|
|
{
|
|
"id": "XXX",
|
|
"secret": "secrete",
|
|
"redirectURLs": ["http://127.0.0.1:5555/callback"]
|
|
},
|
|
{
|
|
"id": "core-update",
|
|
"secret": "secrete",
|
|
"redirectURLs": ["http://127.0.0.1:8000/admin/v1/oauth/login"]
|
|
},
|
|
{
|
|
"id": "oauth2_proxy",
|
|
"secret": "proxy",
|
|
"redirectURLs": ["http://127.0.0.1:4180/oauth2/callback"]
|
|
}
|
|
]
|