-
Notifications
You must be signed in to change notification settings - Fork 169
/
example-config.json
52 lines (52 loc) · 1.73 KB
/
example-config.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
{
"id": 1234567890987,
"provider_key": "provider-key",
"services": [
{
"id": 654321,
"backend_version": "2",
"backend_authentication_type": "service_token",
"backend_authentication_value": "service-token-1234567890",
"proxy": {
"api_backend": "https://echo-api.3scale.net:443",
"auth_app_key": "app_key",
"auth_app_id": "app_id",
"auth_user_key": "user_key",
"credentials_location": "query",
"error_auth_failed": "Authentication failed",
"error_limits_exceeded": "Limits exceeded",
"error_auth_missing": "Authentication parameters missing",
"error_status_auth_failed": 403,
"error_headers_auth_failed": "text/plain; charset=us-ascii",
"error_status_limits_exceeded": 429,
"error_headers_limits_exceeded": "text/plan; charset=us-ascii",
"error_status_auth_missing": 403,
"error_headers_auth_missing": "text/plain; charset=us-ascii",
"error_no_match": "No Mapping Rule matched",
"error_status_no_match": 404,
"error_headers_no_match": "text/plain; charset=us-ascii",
"secret_token": "Shared_secret_sent_from_proxy_to_API_backend",
"hostname_rewrite": null,
"oauth_login_url": null,
"hosts": [
"localhost",
"api-1234567890987.staging.apicast.io"
],
"backend": {
"endpoint": "https://su1.3scale.net",
"host": "su1.3scale.net"
},
"proxy_rules": [
{
"http_method": "GET",
"pattern": "/",
"metric_system_name": "hits",
"delta": 1,
"parameters": [],
"querystring_parameters": {}
}
]
}
}
]
}