Skip to content

Commit

Permalink
feat(web/proxy): add /check endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-melnychuk committed Oct 3, 2024
1 parent 2f3e4be commit 33337e8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions web/etc/proxy/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ app.all('*', function (req, res, next) {
if (req.path === '/favicon.ico') {
return;
}
if (req.path === '/check') {
res.status(200).send('ready');
return;
}

console.log(req.originalUrl);
var target;
Expand Down

0 comments on commit 33337e8

Please sign in to comment.