Forum Discussion
immu
Altostratus
Jun 20, 2017install ssl Certs
Can any tell me the procedure how to install ssl certificate on F5
/a* with string matching equates to
[HTTP::uri] starts_with "/a"
You could also use:
[string match "/a*" [HTTP::uri]]
Similarly, /connectedwindow* equates to:
[HTTP::uri] starts_with "/connectedwindow"
or:
[string match "/connectedwindow*" [HTTP::uri]]
You could also use a switch statement with glob style wildcard matching:
when HTTP_REQUEST {
Check requested URI
switch -glob [HTTP::uri] {
"/a*" {
pool a_pool
}
"/connectedwindow*" {
pool connect_pool
}
default {
Take some default action?
}
}
}
Aaron
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