Forum Discussion
Lani
Mar 24, 2021Nimbostratus
Traffic Shaping and Atlassian Jira
Hi All, I'm having an issue getting Traffic Shaping situated for Jira - here's what I need done: Sticky Sessions If the URI is rest - then go to Pool2 Else if that URI is rest/login.jsp - P...
- Mar 24, 2021
K9815: Using an iRule to select among multiple pools with different members may be incompatible with some cookie persistence configurations
Link: https://support.f5.com/csp/article/K9815
Mar 24, 2021
Hi Lani,
Can you try this irule?
when HTTP_REQUEST {
if { [string tolower [HTTP::path]] starts_with "/rest" && [string tolower [HTTP::path]] ne "/rest/login.jsp"} {
pool pl-prd-jira.ftr.com2-tcp8080
}
else {
pool pl-prd-jira.ftr.com1-tcp8080
}
}
If you need persistence:
when HTTP_REQUEST {
if { [string tolower [HTTP::path]] starts_with "/rest" && [string tolower [HTTP::path]] ne "/rest/login.jsp"} {
pool pl-prd-jira.ftr.com2-tcp8080
persist cookie insert "pool-ftr2"
}
else {
pool pl-prd-jira.ftr.com1-tcp8080
persist cookie insert "pool-ftr1"
}
}
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects