You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: i18n/en/docusaurus-plugin-content-docs/version-2.0/apps/krakend.md
+23-20Lines changed: 23 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,9 @@
2
2
title: KrakenD
3
3
slug: /krakend
4
4
tags:
5
-
- console
6
-
- other
5
+
- Unified Gateway
6
+
- API Gateway
7
+
- KrakenD
7
8
---
8
9
9
10
import Meta from './_include/krakend.md';
@@ -12,32 +13,34 @@ import Meta from './_include/krakend.md';
12
13
13
14
## Getting started{#guide}
14
15
15
-
### Initial setup{#wizard}
16
-
17
-
1. When completed installation of KrakenD at **Websoft9 Console**, get the applicaiton's **Overview** and **Access** information from **My Apps**
18
-
19
-
2. Complete the install wizard step by step
20
-
21
16
### Login verification{#verification}
22
17
23
18
1. Completed installation KrakenD at Websoft9 console, get the applicaiton's overview and access credentials from **My Apps**
24
19
25
20
2. Starting to verify it
26
21
27
-
##Configuration options{#configs}
22
+
### Add Upstream API
28
23
29
-
- CLI
30
-
- Multilingual (√)
31
-
- SMTP (√)
24
+
1.[Arrange the KrakenD application](https://support.websoft9.com/docs/app-compose#dynamic), adding an entry to the endpoints array in `src/krakend.json` as follows:
32
25
33
-
## Administer{#administrator}
26
+
```
27
+
{
28
+
“endpoint”: “/api/users”,
29
+
“method”: “GET”,
30
+
“timeout”: “5000ms”,
31
+
{
32
+
“url_pattern”: “/api/users”,
33
+
“host”: [“http://localhost:9000”],
34
+
“method”: “GET”
35
+
}
36
+
]
37
+
}
38
+
```
39
+
40
+
2. After rebuilding the application, you can access the upstream API via the unified path.
0 commit comments