-
Notifications
You must be signed in to change notification settings - Fork 0
/
krakend.json
139 lines (139 loc) · 3.27 KB
/
krakend.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"version": 3,
"name": "krakend",
"extra_config": {
"security/cors": {
"allow_origins": ["http://localhost:5173", "http://localhost:8080"],
"allow_methods": [
"GET",
"HEAD",
"POST",
"OPTIONS",
"PUT",
"PATCH",
"DELETE"
],
"expose_headers": ["Content-Length", "Content-Type"],
"allow_headers": [
"Accept-Language",
"X-User-Id",
"X-User-Email",
"Authorization",
"Content-Type",
"Origin"
],
"max_age": "12h",
"allow_credentials": true,
"debug": true
},
"security/jwt": {
"alg": "RS256",
"jwk_url": "http://localhost:8082/realms/referentiel-applications/protocol/openid-connect/certs",
"audience": ["referentiel-applications"],
"roles_key_is_nested": true,
"roles_key": "realm_access.roles",
"cache": true
},
"auth/validator": {
"alg": "RS256",
"jwk_url": "http://localhost:8082/realms/referentiel-applications/protocol/openid-connect/certs",
"cache": true,
"propagate_claims": true,
"user_headers": [
{ "claim": "sub", "header": "X-User-Id" },
{ "claim": "email", "header": "X-User-Email" }
]
}
},
"endpoints": [
{
"endpoint": "api/v2/",
"output_encoding": "no-op",
"backend": [
{
"encoding": "no-op",
"host": ["http://backend:3500"],
"url_pattern": "api/v2/"
}
]
},
{
"endpoint": "api/v2/applications",
"method": "POST",
"backend": [
{
"host": ["http://backend:3500"],
"url_pattern": "api/v2/applications",
"method": "POST"
}
],
"output_encoding": "no-op",
"input_headers": [
"Authorization",
"X-User",
"X-Role",
"ClientId",
"X-Requested-With",
"Content-Type",
"Content-Length"
]
},
{
"endpoint": "api/v2/applications/{id}",
"method": "PATCH",
"backend": [
{
"host": ["http://backend:3500"],
"url_pattern": "api/v2/applications",
"method": "PATCH"
}
],
"output_encoding": "no-op",
"input_headers": [
"Authorization",
"X-User",
"X-Role",
"ClientId",
"X-Requested-With",
"Content-Type",
"Content-Length"
]
},
{
"endpoint": "api/v2/applications/search",
"method": "GET",
"input_query_strings": ["*"],
"backend": [
{
"host": ["http://backend:3500"],
"url_pattern": "api/v2/applications/search",
"method": "GET",
"is_collection": true
}
]
},
{
"endpoint": "api/v2/{ressource}/{action}",
"output_encoding": "no-op",
"backend": [
{
"encoding": "no-op",
"host": ["http://backend:3500"],
"url_pattern": "api/v2/{ressource}/{action}"
}
]
},
{
"endpoint": "api/v2/applications/{id}",
"method": "GET",
"backend": [
{
"host": ["http://backend:3500"],
"url_pattern": "api/v2/applications/{id}",
"method": "GET"
}
],
"output_encoding": "no-op"
}
]
}