-
Notifications
You must be signed in to change notification settings - Fork 5
/
proxy.conf.json
46 lines (46 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
{
"/api/docs/*": {
"target": "http://localhost:8066",
"secure": false,
"pathRewrite": {
"^/api/docs/": "/"
},
"logLevel": "debug"
},
"/api/*": {
"target": "http://localhost:8086",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/jupyter/*": {
"target": "http://localhost:8088",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"ws": true
},
"/visafs/*": {
"target": "http://localhost:8088",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/api/ws/*": {
"target": "http://localhost:8086",
"secure": false,
"pathRewrite": {
"^/": ""
},
"changeOrigin": true,
"logLevel": "debug",
"ws": true
},
"/ws/print/": {
"target": "http://localhost:8088",
"secure": false,
"changeOrigin": true,
"logLevel": "debug",
"ws": true
}
}