-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproxy.conf.json
47 lines (47 loc) · 1.04 KB
/
proxy.conf.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
{
"/api-json/*": {
"target": "http://localhost:5000",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {
"^/api-json": "http://localhost:5000/api-json"
}
},
"/api-pdf/*": {
"target": "http://localhost:5000",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {
"^/api-pdf": "http://localhost:5000/api-pdf"
}
},
"/api-image/*": {
"target": "http://localhost:5000",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {
"^/api-image": "http://localhost:5000/api-image"
}
},
"/api-xml/*": {
"target": "http://localhost:5000",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {
"^/api-xml": "http://localhost:5000/api-xml"
}
},
"/api/*": {
"target": "http://localhost:5000",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {
"^/api": "http://localhost:5000/api"
}
}
}