I found this example for using netscaler to rewrite requests to an internal server on a specific port.
set transform action trans_action_RSA_SS -priority 1000 -reqUrlFrom "https://rsa.domain.public" -reqUrlInto “https://rsa.domain.local:7004″ -resUrlFrom "https://rsa.domain.local:7004″ -resUrlInto "https://rsa.domain.public"
I'd like to expand on the example to point the local destination at a vserver.
Assume my vserver is called INTERNALVSERVER and also assume that it is configured as a load balancer in front of 3 nodes (I suspect the specifics of that are irrelevant to this situation).
I just want to ensure that my urltransform applies to my vserver properly. Conceptually I'm going for something like this:
set transform action trans_action_RSA_SS -priority 1000 -reqUrlFrom "https://rsa.domain.public" -reqUrlInto “https://INTERNALVSERVER:7004″ -resUrlFrom "https://INTERNALVSERVER:7004″ -resUrlInto "https://rsa.domain.public"