forked from neocoder/devproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.config.js
40 lines (35 loc) · 1.19 KB
/
main.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const fs = require('fs');
const url = require('url');
const path = require('path');
const targetUrl = url.parse(TARGET);
module.exports = {
port: 80,
sslPort: 443,
localOverrides: false,
target: 'https://int3.apc.com',
ssl: {
key: fs.readFileSync(path.resolve(__dirname, 'ssl/server.key'), 'utf8'),
cert: fs.readFileSync(path.resolve(__dirname, 'ssl/server.crt'), 'utf8'),
},
rules: [
// replacing html page with contents of other file
{
original: '/t/air-vapormax-2019-premium-mens-shoe-wr4C0z/AT6810-001',
local: './html/air-vapormax-2019_modified.html',
},
// transforming html page with transform function
{
original: '/t/air-vapormax-2019-premium-mens-shoe-wr4C0z/AT6810-001',
transform: function(body) {
let b = body.replace(new RegExp(targetUrl.hostname, 'ig'), 'local.mysite.com');
b = b.replace(/<script.*?\/search\.js"><\/script>/gi, '');
return b;
},
},
// replace resource with local one
{
o: '/static/js/app.js',
l: './build/js/app.js',
},
],
};