-
Notifications
You must be signed in to change notification settings - Fork 2
/
proxy.conf.json
106 lines (106 loc) · 2.21 KB
/
proxy.conf.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"/api/**": {
"target": "http://localhost:8250",
"secure": false,
"logLevel": "debug",
"pathRewrite": {
"^/api": ""
}
},
"/admin/auth/jwt/**": {
"target": "http://localhost:8200/jwt/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/admin/auth/jwt": "/admin"
}
},
"/admin/auth/sso/**": {
"target": "http://localhost:8200/sso/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/admin/auth/sso": "/admin"
}
},
"/auth/jwt/**": {
"target": "http://localhost:8200/jwt/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/auth/jwt": ""
}
},
"/auth/sso/**": {
"target": "http://localhost:8200/sso/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/auth/sso": ""
}
},
"/config/auth": {
"target": "http://localhost:4201/conf/auth/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/config/auth": ""
}
},
"/config/console": {
"target": "http://localhost:4201/conf/console/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/config/console": ""
}
},
"/config/cors": {
"target": "http://localhost:4201/conf/cors/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/config/cors": ""
}
},
"/config/csp": {
"target": "http://localhost:4201/conf/csp/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/config/csp": ""
}
},
"/config/package": {
"target": "http://localhost:4201/conf/package/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/config/package": ""
}
},
"/config/server": {
"target": "http://localhost:4201/conf/server/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/config/server": ""
}
},
"/config/streams": {
"target": "http://localhost:4201/conf/streams/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/config/streams": ""
}
},
"/health/proxy": {
"target": "http://localhost:4201/status/proxy/",
"secure": true,
"logLevel": "debug",
"pathRewrite": {
"^/health/proxy": ""
}
}
}