Forum Discussion

Mahmoud_Eldeeb_'s avatar
Mahmoud_Eldeeb_
Icon for Cirrostratus rankCirrostratus
Apr 14, 2014

How to do HTTP-to-HTTPS Redirection alonge with SSL Offloading for 11.5.1?

I have LTM box 11.5.1 HF1, ssl offloading is fine I can brose the web application via https instead of http, remaining part is http-to-https redirection. how do i do it for 11.5.1 HF1 release. ??

 

12 Replies

  • Create an irule and apply it to a Virtual Server with the same address but listening on port 80.

    when HTTP_REQUEST {
     HTTP::redirect "https://[HTTP::host][HTTP::uri]”
    }
    
  • I have another question, for ssl-offloading and http2https redirection, do i need to create a two virtual servers for each service ??

     

  • Each virtual server listens for http or https.

     

    So if you want to do ssl offloading it's https, and if you want to redirect http to https it's http virtual server.

     

    So you have to define 2 of them (1 per service).

     

  • Each virtual server listens for http or https.

     

    So if you want to do ssl offloading it's https, and if you want to redirect http to https it's http virtual server.

     

    So you have to define 2 of them (1 per service).

     

  • So what was the problem which was not letting it work from Internet before????

     

    For your question related to SSL Offload you have to create the SSL server profile and attach it to the https VS.

     

  • So what was the problem which was not letting it work from Internet before????

     

    For your question related to SSL Offload you have to create the SSL server profile and attach it to the https VS.