blob: 311dbcd3ca4f801d1dbecac847fbb0f1ffe6d93e [file] [log] [blame]
const httpProxy = require('http-proxy');
const target = process.env.PROXY || '192.168.46.100';
const apiProxy = httpProxy.createProxyServer({
target: `http://${target}`
});
apiProxy.on('error', (error, req, res) => {
res.writeHead(500, {
'Content-Type': 'text/plain'
});
console.error('[Proxy]', error);
});
module.exports = {
api: apiProxy
};