-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.conf.json
60 lines (60 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"/tf/predictions/*": {
"target": "http://localhost/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/pt/predictions/*": {
"target": "http://localhost:8080/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/tracking/": {
"target": "http://192.168.0.13:8000/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/mediafiles/*": {
"target": "http://localhost/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
},
"/omero/api/*": {
"target": "http://localhost:4080/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {"^/omero/api/" : "/api/v0/"}
},
"/omero/webclient/*": {
"target": "http://localhost:4080/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {"^/omero/" : "/"}
},
"/omero/webgateway/*": {
"target": "http://localhost:4080/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {"^/omero/" : "/"}
},
"/omero/iviewer/*": {
"target": "http://localhost:4080/",
"secure": false,
"logLevel": "debug",
"changeOrigin": true,
"pathRewrite": {"^/omero/" : "/"}
},
"/segService/*": {
"target": "http://localhost:8080",
"secure": false,
"logLevel": "debug",
"changeOrigin": true
}
}