-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.conf.js
74 lines (69 loc) · 1.48 KB
/
proxy.conf.js
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
64
65
66
67
68
69
70
71
72
73
74
const protractor = require('./protractor.conf.js')
const proxy_remote_server_address = 'https://deviceaccess.ru';
const proxy_remote_ws_server_address = 'ws://deviceaccess.ru';
let PROXY_CONFIG = [
{
context: [
'/en',
'/fr',
'/ru'
],
target: protractor.config.baseUrl,
secure: false,
pathRewrite: {
'^/en': '',
'^/fr': '',
'^/ru': ''
}
},
{
context: [
'/api',
'/get_csrf',
'/export'
],
target: proxy_remote_server_address,
secure: false,
changeOrigin: true
}
]
if (proxy_remote_server_address.indexOf('localhost') != -1)
{
PROXY_CONFIG.unshift(
{
context: '/api/v2',
pathRewrite: {
'^/api/v2': ''
},
target: 'http://localhost:8123',
secure: false,
changeOrigin: true
})
PROXY_CONFIG.push(
{
context: '/ws/',
// pathRewrite: {
// '^/ws*': '',
// },
target: proxy_remote_ws_server_address,
secure: false,
ws: true,
changeOrigin: true,
logLevel: "debug"
})
}
else
{
PROXY_CONFIG.push(
{
context: '/ws/',
pathRewrite: {
'^/ws*': '/wss',
},
target: proxy_remote_server_address,
secure: false,
ws: true,
changeOrigin: true
})
}
module.exports = PROXY_CONFIG