-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxy.config.development.json
More file actions
65 lines (56 loc) · 1.12 KB
/
proxy.config.development.json
File metadata and controls
65 lines (56 loc) · 1.12 KB
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
{
"name": "Development Configuration",
"description": "Configuration optimized for local development with verbose logging",
"server": {
"port": 3000,
"origin": "https://dummyjson.com",
"host": "localhost"
},
"cache": {
"enabled": true,
"defaultTTL": 60,
"maxEntries": 100,
"compression": {
"enabled": true,
"method": "gzip"
},
"customTTL": {
"/products/*": 120,
"/users/*": 30
}
},
"security": {
"excludeAuthenticatedRequests": true
},
"rateLimit": {
"enabled": false,
"requestsPerMinute": 1000,
"requestsPerHour": 10000,
"whitelist": [],
"blacklist": []
},
"logging": {
"enabled": true,
"level": "debug",
"format": "text",
"console": {
"enabled": true,
"colorize": true
},
"files": {
"access": "./logs/dev-access.log",
"error": "./logs/dev-error.log"
}
},
"analytics": {
"enabled": true,
"trackPerformance": true,
"trackBandwidth": true
},
"monitoring": {
"healthCheck": {
"enabled": true,
"path": "/__health"
}
}
}