Forum Discussion

Joseph_Johnson_'s avatar
Joseph_Johnson_
Icon for Nimbostratus rankNimbostratus
Apr 25, 2016

HTTP to HTTPS

Hi,

 

I was wondering if someone could help me with an irule that will redirect a site http://test.site.com:8050 to https:test.site.com:8050. The problem is it keeps getting stuck in a loop. I need it to know if its http to redirect but if the site comes in https then to not redirect the request again.

 

Thanks!!!

 

6 Replies

  • Generally with http-to-https redirection you would have two VS's with the same destination IP on different ports (eg. 80 & 443). There is a default iRule which will work for this (_sys_https_redirect). You will not be able to create one VS on 8050 without SSL profiles and another on the same port without SSL profiles to redirect to.

     

    Why does your front end VS need to be listening on 8050 specifically? Could you not just do the generic 80/443 scenario I mentioned and if you backend pool members are listening on 8050 (ssl or otherwise), configure them as such.

     

    • Joseph_Johnson_'s avatar
      Joseph_Johnson_
      Icon for Nimbostratus rankNimbostratus
      Hi, Thanks for you answer! The reason is because the business is using multiple oracle apps that are on different ports. For example, http://oracle-test:8050 is one app and http://oracle-test:8090 is another app. I have a VIP configured that is listening on Port 0, and an irule that will check the port coming in appended to the URL and pass it to the associated Pool for that port. Now they want to utilize HTTPS. They can browse to the direct link https://oracle-test:8050 but they want to be able to redirect if a user just types in http://oracle-test:8050 to https://oracle-test:8050. Is there anything in the https header that we can pull out so that for example it an http request comes in redirect to https but if the [HOST]URL is HTTPS then do nothing and just let the traffic pass through? I know this may be convoluted but thanks for you response.
    • shopkeeper56_23's avatar
      shopkeeper56_23
      Icon for Cirrostratus rankCirrostratus
      So just to make sure I'm clear... you would like the following flow.... Client to VS is HTTP on the 80xx port. Then SSL on the connection between the Big IP and the Pool member (again on 80xx port)? All you would need to make this work is an Server SSL profile (using a certificate trusted by your Oracle hosts) and apply it to the VS
    • Joseph_Johnson_'s avatar
      Joseph_Johnson_
      Icon for Nimbostratus rankNimbostratus
      Where would the redirect come into play. Remember, all of this is happening on the same VIP, I don't see how HTTP and HTTPS would use SSL on the same VIP simultaneously.