Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does Request.IsSecureConnection return false when true is expected

Tags:

I have an aspx page which is checking Request.IsSecureConnection to ensure it is true, if not it does a redirect to the the secure page at https://www.domain.com/page.aspx.

The server has an SSL cert installed for the domain, and the browser shows the padlock icon.

The same code ran fine on a different server, but now Request.IsSecureConnection always returns false.

I have created a completely empty aspx file, that just prints the return value of Request.IsSecureConnection and it is still false, so there is no other content coming from a standard http request.

Could anyone suggest what might be causing this, or give any hints on how I might find out what is causing this to always return false?

like image 878
Will Avatar asked Jun 15 '09 21:06

Will


1 Answers

If there's a load balancing router or similar in front of your web server with ssl termination then the connection from there to your web server won't be over SSL. In this case you usually have to check for a connection on a specific port or for headers being set by the load balancer.

like image 54
Adam Cooper Avatar answered Nov 30 '22 23:11

Adam Cooper