Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update documentation #25

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
In the OneCX Portal we want to support Multi-Tenancy. In order to do so this application was created:
TenantResolver Microservice To resolve Tenant - by user ID & Org-Party Id.

## Configuration

```properties
# header parameter
onecx.tenant.header.token=apm-principal-token
# enable or disable verified of the token
onecx.tenant.token.verified=true
# issuer suffix
onecx.tenant.token.issuer.public-key-location.suffix=/protocol/openid-connect/certs
# replace issuer location
onecx.tenant.token.issuer.public-key-location.enabled=false
# enable or disable default tenant
onecx.tenant.default.enabled=true
# default tenant value
onecx.tenant.default.tenant-id=default
# token organization claim
onecx.tenant.token.claim.org-id=orgId
```

## Data import

To enable data import for local development use these properties:
Expand Down
Loading