Hi Jochen Maurer, Appreciate if you could calrify the following. As you said: "If you have setup this, STM will check your nodes every few seconds if this URL still returns OK, if not, the node will be marked as failed. then, within a rule (assigned to your vserver), you can check, if nodes for your pool are available if (pool.activenodes("yourpoolname") < 1 { http.sendresponse(....your maintenance message); } " However I saw a configuration under Virtual Server > Connection Management > Connection Error Settings: that we can configure an error page. I'm not quite sure whether configuring an error page (i.e. maintanace-page.html) here has the same effect as doing like the following if (pool.activenodes("yourpoolname") < 1 { http.sendRedirect("maintanace-page.html"); } Could you please shed some light on this
... View more