SSL session caching in nginx
hezmatt.org
SSL session caching in nginx
1–10 of 18 posts
Re: SSL session caching in nginx
#2Sounds useful, but how many visitors do you need to have for this to be worth doing?
Re: SSL session caching in nginx
#3Re: SSL session caching in nginx
#4I had to check several times I hadn't accidentally hit zoom a few times. Sounds useful, but how many visitors do you need to have for this to be worth doing?
If you have any visitors you are doing them a huge disservice if you do not have SSL session caching.
You would use external SSL caching like this if you have more than one SSL termination point (typically a webserver like nginx/Apache) behind a load-balancer.
Re: SSL session caching in nginx
#5Re: SSL session caching in nginx
#6Re: SSL session caching in nginx
#7IMO (and I believe Google agrees - http://www.imperialviolet.org/2010/06/25/overclocking-ssl.ht...) the advantages of terminating SSL at the load balancer outweigh the horizontal scalability of this approach, at least in most cases.
Re: SSL session caching in nginx
#8Re: SSL session caching in nginx
#9One downside of this approach (without some funky iptables/networking-fu) is that you loose the source IP from the original request. Adding headers like X-Forwarded-For only works after the request has been decrypted, so all the traffic will appear to source from the load balancer, which can present its own issues. IMO (and I believe Google agrees - http://www.imperialviolet.org/2010/06/25/overclocking-ssl.ht... ) th…
Re: SSL session caching in nginx
#10One downside of this approach (without some funky iptables/networking-fu) is that you loose the source IP from the original request. Adding headers like X-Forwarded-For only works after the request has been decrypted, so all the traffic will appear to source from the load balancer, which can present its own issues. IMO (and I believe Google agrees - http://www.imperialviolet.org/2010/06/25/overclocking-ssl.ht... ) th…
Transparent load balancers exist and don't have the issues you are talking about.