File tree Expand file tree Collapse file tree
openid-connect-provider-debugger Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ browser, it provides a full picture of the OP's behavior to help
88understand and troubleshoot the OIDC flow.
99
1010[ ![ Dockerfile] ( https://img.shields.io/badge/GitHub-Dockerfile-blue )] ( https://github.com/leplusorg/openid-connect-provider-debugger/blob/main/openid-connect-provider-debugger/Dockerfile )
11- [ ![ ShellCheck] ( https://github.com/leplusorg/openid-connect-provider-debugger/workflows/ShellCheck/badge.svg )] ( https://github.com/leplusorg/openid-connect-provider-debugger/actions?query=workflow:"ShellCheck" )
1211[ ![ Docker Build] ( https://github.com/leplusorg/openid-connect-provider-debugger/workflows/Docker/badge.svg )] ( https://github.com/leplusorg/openid-connect-provider-debugger/actions?query=workflow:"Docker" )
1312[ ![ Docker Stars] ( https://img.shields.io/docker/stars/leplusorg/openid-connect-provider-debugger )] ( https://hub.docker.com/r/leplusorg/openid-connect-provider-debugger )
1413[ ![ Docker Pulls] ( https://img.shields.io/docker/pulls/leplusorg/openid-connect-provider-debugger )] ( https://hub.docker.com/r/leplusorg/openid-connect-provider-debugger )
@@ -50,15 +49,15 @@ A successful sign in would result in the display of a JSON document like this on
5049{
5150 "options" : {
5251 "client_id" : " debugger" ,
53- "discovery" : " http:\/\/ 192.168.1.10:8081\/ auth \/ realms\/ master\/ .well-known\/ openid-configuration" ,
52+ "discovery" : " http:\/\/ 192.168.1.10:8081\/ realms\/ master\/ .well-known\/ openid-configuration" ,
5453 "redirect_uri" : " http:\/\/ localhost:8080\/ login" ,
5554 "ssl_verify" : " no" ,
5655 "client_secret" : " 835e0717-e0c8-4b57-b044-295fa0e3f61b"
5756 },
5857 "id_token" : {
5958 "azp" : " debugger" ,
6059 "iat" : 1590619714 ,
61- "iss" : " http:\/\/ 192.168.1.10:8081\/ auth \/ realms\/ master" ,
60+ "iss" : " http:\/\/ 192.168.1.10:8081\/ realms\/ master" ,
6261 "aud" : " debugger" ,
6362 "nonce" : " 1e23537bb06f2b4e324d12d8d51f2c6b" ,
6463 "exp" : 1590619774 ,
Original file line number Diff line number Diff line change 66
77+ error_log /dev/stderr debug;
88+
9- + env OIDC_CLIENT_ID ;
10- + env OIDC_CLIENT_SECRET ;
11- + env OIDC_DISCOVERY ;
12- + env OIDC_REDIRECT_URI ;
13- + env OIDC_SSL_VERIFY ;
9+ + env oidc_client_id ;
10+ + env oidc_client_secret ;
11+ + env oidc_discovery ;
12+ + env oidc_redirect_uri ;
13+ + env oidc_ssl_verify ;
1414+
1515 #error_log logs/error.log;
1616 #error_log logs/error.log notice;
You can’t perform that action at this time.
0 commit comments