add comment about health checks on '/'

This commit is contained in:
Brian Gough 2020-11-27 14:42:42 +00:00
parent 8a5858f430
commit 1ddcdf38ca

View file

@ -78,6 +78,7 @@ io.configure(function () {
])
})
// a 200 response on '/' is required for load balancer health checks
app.get('/', (req, res) => res.send('real-time-sharelatex is alive'))
app.get('/status', function (req, res) {