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

Update configuring-identity-server-for-ob.md #86

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
10 changes: 9 additions & 1 deletion en/docs/install-and-setup/configuring-identity-server-for-ob.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,14 @@ account retrieval. By default, this is disabled and the configuration is set to
username="$ref{super_admin.username}@carbon.super"
password="$ref{super_admin.password}"
server_url = "{tcp://<SI_HOST>:7612}"
```

16. When invoking any of the Identity Server endpoints, please ensure that a header named "X-External-Traffic" is included with the value "true" (both the header name and value are configurable as shown below). This header helps to distinguish external requests for accurate metric calculations. It is recommended to configure this header at the load balancer level for consistency.

``` toml
[open_banking_cds.external_traffic]
header_name = "X-External-Traffic"
expected_value = "true"
```

## Starting servers
Expand All @@ -202,4 +210,4 @@ account retrieval. By default, this is disabled and the configuration is set to
``` bash
./wso2server.sh
```