Tuesday, May 9, 2017

amazon elb - Terminate Gzip compression at AWS ELB classic load balancer

We have a set of servers in AWS that are behind an ELB. We are trying to upload data to the server. We want to enable gzip, but the servers themselves use an obscure golang framework that does not have default gzip support to uncompress incoming requests.



Is it possible to terminate gzip at a load balancer, and send uncompressed content to the servers behind them?



That way our clients can send gzipped data, and we don't have to modify the server code.

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...