Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Open the oidc.json file located in the <DTP_DATA_DIR>/conf directory to configure to configure the OIDC provider properties used by DTPby DTP.

Code Block
languagejs
titleDefault contents of the oidc.json file
{
"enabled": false,
"issuerUri": "your issuer uri",
"clientId": "your client id",
"clientSecret": "your client secret",
"scopes": ["openid", "profile", "email"],
"claimMappings":
	{ 
		"username": "preferred_username", 
		"firstName": "given_name", 
		"lastName": "family_name", 
		"email": "email" 
	},
"adminUsers": []
}

...