mirror of
https://github.com/openMF/web-app.git
synced 2026-02-06 17:46:48 +00:00
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright since 2025 Mifos Initiative
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* Proxy configuration for running the app against a local Fineract instance.
|
|
* Usage:
|
|
* ng serve --proxy-config proxy.localhost.conf.js
|
|
*/
|
|
|
|
module.exports = [
|
|
{
|
|
context: ['/fineract-provider'],
|
|
target: 'http://localhost:8443',
|
|
pathRewrite: { '^/fineract-provider': '' },
|
|
changeOrigin: true,
|
|
secure: false,
|
|
logLevel: 'debug',
|
|
onProxyReq: function (proxyReq, req, res) {
|
|
const rewrittenPath = (req.url || '').replace(/^\/fineract-provider/, '');
|
|
console.log('[Proxy] Proxying:', req.method, req.url, '->', this.target + rewrittenPath);
|
|
},
|
|
onError: function (err, req, res) {
|
|
console.error(
|
|
'[Proxy] Error while proxying request:',
|
|
req && req.method,
|
|
req && req.url,
|
|
'->',
|
|
this.target,
|
|
'-',
|
|
err && err.message
|
|
);
|
|
if (res && !res.headersSent) {
|
|
res.writeHead(502, { 'Content-Type': 'text/plain' });
|
|
res.end('Proxy error: ' + (err && err.message ? err.message : 'Unknown error'));
|
|
}
|
|
}
|
|
}
|
|
];
|