cymru81
Sep 27, 2023Altocumulus
maintenance page irule
Hi, id like to force all traffic to hit a maintenance page irule regardless of pool member status, i have the following but how can i write this without the "if" so it will disaply everytime?
when HTTP_REQUEST {
if { [active_members [LB::server pool]] == 0 } {
HTTP::respond 200 content "
<html>
<head>
<title>Under maintenance</title>
</head>
<body>
We are ndergoing maintenance. Please try again later.
</body>
</html>
"
}
}
Thanks in advance 🙂