Forum Discussion
ema_128890
Jul 07, 2016Nimbostratus
offload ssl and adding new uri
Hi,
I have a VS setup for port 443 with client ssl profile and a pool with one member. HTTP profile is also in use. I'm looking for help so that when someone hits the VS at https://abc.com it ...
- Jul 07, 2016
Hi,
Try adding a log on your irule and trace what happens on the client side with fiddler tool.
You can also change your irule :
when HTTP_REQUEST { if { [HTTP::uri] eq "/" } { HTTP::uri "/reports" } }
Yann_Desmarest
Jul 07, 2016Cirrus
Reply to the last comment :
Option 1:
when HTTP_REQUEST {
if { [HTTP::uri] eq "/" } {
HTTP::host "[HTTP::host]:8020"
HTTP::uri "/reports"
}
}
Option 2 (require a VS listening on 8020 :
when HTTP_REQUEST {
if { [HTTP::uri] eq "/" } {
HTTP::respond 301 Location "https://[HTTP::host]:8020/reports" "Connection" "Close"
}
}
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