diff --git a/src/apphealthmonitor.js b/src/apphealthmonitor.js index 6a0411bee..3592eeba5 100644 --- a/src/apphealthmonitor.js +++ b/src/apphealthmonitor.js @@ -94,6 +94,7 @@ function checkAppHealth(app, callback) { superagent .get(healthCheckUrl) .set('Host', app.fqdn) // required for some apache configs with rewrite rules + .set('User-Agent', 'Mozilla') // required for some apps (e.g. minio) .redirects(0) .timeout(HEALTHCHECK_INTERVAL) .end(function (error, res) {