cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
328
Views
0
Helpful
1
Replies

SSL Termination on CSS11501

spencedavid21
Level 1
Level 1

When using SSL termination on the CSS Is it possible to force part of a site eg. the area under a particular virtual directory, or a list of pages, for SSL termination, with the remainder of the site still being accessible via http?

Or is it only possible to nominate an entire site?

Regards

David

1 Accepted Solution

Accepted Solutions

Gilles Dufour
Cisco Employee
Cisco Employee

what you can do is intercept the http traffic going to the secure site and redirect it to an HTTPS vip.

ie:

content all-http

vip 10.1.1.1

port 80

url "/*"

content redirect-secure

vip 10.1.1.1

port 80

url "/secure/*"

service redirect

content secured

vip 10.1.1.1

port 443

service sslmod

Something like this.

Once in https mode, you could also intercept decrypted traffic sent to a non-secure directory and do another redirect to http. Personally, I do not see the need for it.

Gilles.

View solution in original post

1 Reply 1

Gilles Dufour
Cisco Employee
Cisco Employee

what you can do is intercept the http traffic going to the secure site and redirect it to an HTTPS vip.

ie:

content all-http

vip 10.1.1.1

port 80

url "/*"

content redirect-secure

vip 10.1.1.1

port 80

url "/secure/*"

service redirect

content secured

vip 10.1.1.1

port 443

service sslmod

Something like this.

Once in https mode, you could also intercept decrypted traffic sent to a non-secure directory and do another redirect to http. Personally, I do not see the need for it.

Gilles.