From ed06e3c49190e4061445ab1fa8188af5cd603978 Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Tue, 17 Aug 2021 13:00:46 -0700 Subject: [PATCH] Add a new JS-based dev proxy for the new split up sites --- frontend/proxy.conf.js | 64 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 frontend/proxy.conf.js diff --git a/frontend/proxy.conf.js b/frontend/proxy.conf.js new file mode 100644 index 000000000..4869935ff --- /dev/null +++ b/frontend/proxy.conf.js @@ -0,0 +1,64 @@ +const fs = require('fs'); + +let PROXY_CONFIG; +let configContent; + +const CONFIG_FILE_NAME = 'mempool-frontend-config.json'; + +try { + const rawConfig = fs.readFileSync(CONFIG_FILE_NAME); + configContent = JSON.parse(rawConfig); + console.log(`${CONFIG_FILE_NAME} file found, using provided config`); +} catch (e) { + console.log(e); + if (e.code !== 'ENOENT') { + throw new Error(e); + } else { + console.log(`${CONFIG_FILE_NAME} file not found, using default config`); + + } +} + +PROXY_CONFIG = [ + { + context: ['*', + '/api/**', '!/api/v1/ws', + '!/bisq', '!/bisq/**', '!/bisq/', + '!/liquid', '!/liquid/**', '!/liquid/', + '/testnet/api/**', '/signet/api/**' + ], + target: "https://mempool.space", + ws: true, + secure: false, + changeOrigin: true + }, + { + context: ['/api/v1/ws'], + target: "https://mempool.space", + ws: true, + secure: false, + changeOrigin: true, + }, + { + context: ['/api/bisq**', '/bisq/api/**'], + target: "https://bisq.markets", + pathRewrite: { + "^/api/bisq/": "/bisq/api" + }, + ws: true, + secure: false, + changeOrigin: true + }, + { + context: ['/api/liquid**', '/liquid/api/**'], + target: "https://liquid.network", + pathRewrite: { + "^/api/liquid/": "/liquid/api" + }, + ws: true, + secure: false, + changeOrigin: true + } +]; + +module.exports = PROXY_CONFIG;