-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproxyConfig.js
38 lines (38 loc) · 985 Bytes
/
proxyConfig.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
// this file contains configurations for dev proxy
module.exports = {
'/rest': {
target: "https://dev.mapstore.geo-solutions.it/mapstore",
secure: false,
headers: {
host: "dev.mapstore.geo-solutions.it"
}
},
'/pdf': {
target: "https://dev.mapstore.geo-solutions.it/mapstore",
secure: false,
headers: {
host: "dev.mapstore.geo-solutions.it"
}
},
'/mapstore/pdf': {
target: "https://dev.mapstore.geo-solutions.it",
secure: false,
headers: {
host: "dev.mapstore.geo-solutions.it"
}
},
'/proxy': {
target: "http://localhost:8081/",
secure: false,
headers: {
host: "192.168.56.1"
}
},
'/tabou2': {
target: "https://portail-test.sig.rennesmetropole.fr",
secure: false,
headers: {
host: "portail-test.sig.rennesmetropole.fr"
}
}
};