From 1ee7d6c5f4e449a83145909e5895b9aace88b97c Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sun, 8 Nov 2015 22:26:41 +0100 Subject: [PATCH] static: add fixture client for oauth2_proxy 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. --- static/fixtures/clients.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/fixtures/clients.json b/static/fixtures/clients.json index 070ae739..4a89fada 100644 --- a/static/fixtures/clients.json +++ b/static/fixtures/clients.json @@ -8,5 +8,10 @@ "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"] } ]