Skip to content

Instantly share code, notes, and snippets.

@lrhazi
Last active September 24, 2020 23:10
Show Gist options
  • Save lrhazi/c1b07050dece1681736aea2084b02442 to your computer and use it in GitHub Desktop.
Save lrhazi/c1b07050dece1681736aea2084b02442 to your computer and use it in GitHub Desktop.
sample irule
when HTTP_REQUEST {
set uriLowered [string tolower [HTTP::uri]]
if { $uriLowered starts_with "/home" } {
pool home_pool
} else {
pool default_pool
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment