mempool/frontend/proxy.conf.json

108 lines
2.2 KiB
JSON
Raw Normal View History

2019-07-21 16:59:47 +02:00
{
"/api/v1": {
2019-07-21 16:59:47 +02:00
"target": "http://localhost:8999/",
"secure": false
2020-02-23 21:43:00 +01:00
},
"/api/v1/ws": {
2020-02-23 21:43:00 +01:00
"target": "http://localhost:8999/",
"secure": false,
"ws": true
},
2020-10-07 18:24:01 +02:00
"/api/": {
2020-12-21 17:08:34 +01:00
"target": "http://localhost:8999/",
"secure": false,
"pathRewrite": {
2020-12-21 17:08:34 +01:00
"^/api/": "/api/v1/"
}
},
"/testnet/api/v1": {
"target": "http://localhost:8999/",
"secure": false,
"pathRewrite": {
"^/testnet/api/v1": "/api/v1"
}
},
"/testnet/api/v1/ws": {
"target": "http://localhost:8999/",
"secure": false,
"ws": true,
"pathRewrite": {
"^/testnet/api": "/api/v1/ws"
}
},
2020-10-07 18:24:01 +02:00
"/testnet/api/": {
"target": "http://localhost:50001/",
"secure": false,
"pathRewrite": {
"^/testnet/api": ""
}
},
2021-02-20 17:12:22 +01:00
"/signet/api/v1": {
"target": "http://localhost:8999/",
"secure": false,
"pathRewrite": {
"^/signet/api/v1": "/api/v1"
}
},
"/signet/api/v1/ws": {
"target": "http://localhost:8999/",
"secure": false,
"ws": true,
"pathRewrite": {
"^/signet/api": "/api/v1/ws"
}
},
"/signet/api/": {
"target": "http://localhost:50001/",
"secure": false,
"pathRewrite": {
"^/signet/api": ""
}
},
2020-08-12 19:46:44 +02:00
"/liquid/api/v1/ws": {
"target": "http://localhost:8999/",
"secure": false,
"ws": true,
"pathRewrite": {
"^/liquid/api": "/api/v1/ws"
}
},
2020-10-07 18:24:01 +02:00
"/liquid/api/": {
2020-08-12 19:46:44 +02:00
"target": "http://localhost:50001/",
"secure": false,
"pathRewrite": {
2020-10-07 18:24:01 +02:00
"^/liquid/api/": ""
2020-08-12 19:46:44 +02:00
}
},
2020-10-07 18:24:01 +02:00
"/bisq/api/": {
2020-07-19 07:57:41 +02:00
"target": "http://localhost:8999/",
"secure": false,
"pathRewrite": {
"^/bisq/api/": "/api/v1/bisq/"
2020-07-19 07:57:41 +02:00
}
},
"/bisq/api/v1/ws": {
"target": "http://localhost:8999/",
2020-02-23 21:43:00 +01:00
"secure": false,
"ws": true,
2020-02-23 21:43:00 +01:00
"pathRewrite": {
2020-10-07 18:24:01 +02:00
"^/bisq/api": "/api/v1/ws"
2020-02-23 21:43:00 +01:00
}
},
"/resources/assets.minimal.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/assets.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/pools.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
2019-07-21 16:59:47 +02:00
}
}