Browse Source
fix: Error 'TypeError: Missing parameter name ...' when running TB_ENABLE_PROXY=true
pull/14493/head
samuel
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
msa/web-ui/server.ts
|
|
|
@ -81,12 +81,12 @@ let connections: Socket[] = []; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
app.all('/api/*', (req, res) => { |
|
|
|
app.all('/api/*splat', (req, res) => { |
|
|
|
logger.debug(req.method + ' ' + req.originalUrl); |
|
|
|
apiProxy.web(req, res); |
|
|
|
}); |
|
|
|
|
|
|
|
app.all('/static/rulenode/*', (req, res) => { |
|
|
|
app.all('/static/rulenode/*splat', (req, res) => { |
|
|
|
apiProxy.web(req, res); |
|
|
|
}); |
|
|
|
|
|
|
|
|