cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
745
Views
0
Helpful
2
Replies

ACE appliance 80 to 443 redirect

dpastor
Level 1
Level 1

Hello,

I am running ACE 4710 appliance and have an 80 to 443 redirect.  My question is that since I am running a "wildcard" redirect(see config below), can I specify one URL to be excluded from the redirect and continue on via port 80 without being redirected?

Thanks,

Dave

rserver redirect test-80-REDIRECT
  webhost-redirection https://%h%p 301
  inservice

1 Accepted Solution

Accepted Solutions

Gilles Dufour
Cisco Employee
Cisco Employee

Dave,

the serverfarm selection is done inside the policy with class-maps.

You can therefore create an http class-map to match the specific url.

Then inside your policy you do

policy type loadbalance http first-match Test

  class URL

     serverfarm LoadBalance

   class class-default

     serverfarm Redirect

Gilles.

View solution in original post

2 Replies 2

Gilles Dufour
Cisco Employee
Cisco Employee

Dave,

the serverfarm selection is done inside the policy with class-maps.

You can therefore create an http class-map to match the specific url.

Then inside your policy you do

policy type loadbalance http first-match Test

  class URL

     serverfarm LoadBalance

   class class-default

     serverfarm Redirect

Gilles.

Gilles,

Thanks.

Dave