gisaf-frontend/proxy.conf.json

48 lines
891 B
JSON
Raw Normal View History

2024-02-17 12:35:03 +05:30
{
"/static": {
"target": "http://127.0.0.1:5000",
"secure": false
},
"/gj": {
"target": "http://127.0.0.1:5000",
"secure": false,
"ws": true
},
"/sched": {
"target": "http://127.0.0.1:8000",
"secure": false
},
"/_sched": {
"target": "http://127.0.0.1:8000",
"secure": false,
"ws": true
},
2024-02-27 11:49:11 +05:30
"/openapi.json": {
"target": "http://127.0.0.1:5000",
"secure": false,
"ws": true
},
"/docs": {
"target": "http://127.0.0.1:5000",
"secure": false,
"ws": true
},
2024-02-17 12:35:03 +05:30
"/api": {
"target": "http://127.0.0.1:5000",
"secure": false,
"ws": true
},
"/static/tiles": {
"target": "/home/phil/gisaf_misc/map/tiles",
"secure": false,
"changeOrigin": true,
"pathRewrite": {
"^/static/tiles" : ""
}
},
"/terrain": {
"target": "http://127.0.0.1:8899",
"secure": false
}
}