| | |
| | | // const proxy = require('http-proxy-middleware') |
| | | // const host = 'http://qingqiumarket.cn' |
| | | // const service = 'mkwms/' |
| | | const proxy = require('http-proxy-middleware') |
| | | const options = require('../public/options.json') |
| | | |
| | | module.exports = function() {} |
| | | // module.exports = function(app) { |
| | | module.exports = function(app) { |
| | | // app.use(proxy('/webapi', { |
| | | // target: `${host}/${service}webapi`, |
| | | // secure: false, |
| | |
| | | // } |
| | | // })) |
| | | |
| | | // app.use(proxy('/wxpay', { |
| | | // target: `${host}/${service}wxpay`, |
| | | // secure: false, |
| | | // changeOrigin: true, |
| | | // pathRewrite: { |
| | | // '^/wxpay': '/' |
| | | // } |
| | | // })) |
| | | app.use(proxy('/wxpay', { |
| | | target: `${options.host}/${options.service}`, |
| | | secure: false, |
| | | changeOrigin: true |
| | | })) |
| | | |
| | | // app.use(proxy('/trans', { |
| | | // target: `${host}/${service}trans`, |
| | | // target: `${host}/${service}`, |
| | | // secure: false, |
| | | // changeOrigin: true, |
| | | // pathRewrite: { |
| | | // '^/trans': '/' |
| | | // } |
| | | // changeOrigin: true |
| | | // })) |
| | | // } |
| | | |
| | | // app.use(proxy('/api', { // 旷视面板机接口测试 |
| | | // target: `http://192.168.1.66:80`, |
| | | // secure: false, |
| | | // changeOrigin: true |
| | | // })) |
| | | } |