We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9243444 commit 162a42fCopy full SHA for 162a42f
lib/http-proxy/index.js
@@ -85,8 +85,8 @@ function createRightProxy(type) {
85
function ProxyServer(options) {
86
EE3.call(this);
87
88
- this.web = createRightProxy('web')(options);
89
- this.ws = createRightProxy('ws')(options);
+ this.web = this.proxyRequest = createRightProxy('web')(options);
+ this.ws = this.proxyWebsocketRequest = createRightProxy('ws')(options);
90
this.options = options;
91
92
this.webPasses = Object.keys(web).map(function(pass) {
0 commit comments