fix(core): update
This commit is contained in:
parent
ba55019846
commit
1264542410
@ -1,6 +1,6 @@
|
||||
export interface IHostConfig {
|
||||
hostName: string;
|
||||
destination: string;
|
||||
destinationIp: string;
|
||||
destinationPort: number;
|
||||
privateKey: string;
|
||||
publicKey: string;
|
||||
|
@ -1,3 +1,8 @@
|
||||
import * as plugins from './smartproxy.plugins';
|
||||
|
||||
export class SmartproxyRouter {}
|
||||
export class SmartproxyRouter {
|
||||
|
||||
public routeReq(req: plugins.express.Request) {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
@ -21,6 +21,31 @@ export class SmartProxy {
|
||||
public async start() {
|
||||
this.expressInstance = plugins.express();
|
||||
this.httpsServer = plugins.https.createServer(this.expressInstance);
|
||||
for (const hostCandidate of this.hostCandidates) {
|
||||
this.httpsServer.addContext(hostCandidate.hostName, {
|
||||
cert: hostCandidate.publicKey,
|
||||
key: hostCandidate.privateKey
|
||||
});
|
||||
}
|
||||
|
||||
// proxy middleware options
|
||||
const proxyOptions: plugins.httpProxyMiddleware.Config = {
|
||||
target: 'http://www.example.org', // target host
|
||||
changeOrigin: true, // needed for virtual hosted sites
|
||||
ws: true, // proxy websockets
|
||||
pathRewrite: {
|
||||
'^/api/old-path': '/api/new-path', // rewrite path
|
||||
'^/api/remove/path': '/path' // remove base path
|
||||
},
|
||||
router: (req: plugins.express.Request) => {
|
||||
return this.router.routeReq(req);
|
||||
}
|
||||
};
|
||||
|
||||
this.expressInstance.use(plugins.httpProxyMiddleware(proxyOptions));
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
public async update() {
|
||||
|
@ -5,6 +5,6 @@ export { https };
|
||||
|
||||
// third party scope
|
||||
import express from 'express';
|
||||
import * as httpProxyMiddleware from 'http-proxy-middleware';
|
||||
import httpProxyMiddleware from 'http-proxy-middleware';
|
||||
|
||||
export { express, httpProxyMiddleware };
|
||||
|
Loading…
Reference in New Issue
Block a user