46678/redirect-http-traffic-to-https-request-on-elb
I have a load balancer set to two of my ec2 instances. I would like to redirect all the HTTP traffic to HTTPS request on the load balancer. I'm using an Nginx server.
Change your server config file
if ($http_x_forwarded_proto = 'http') { return 301 https://yourdomain.com$request_uri; }
ELB sets X-Forwarded-Proto header, you can use it to detect if the original request was to HTTP and redirect to HTTPS then.
Hi@akhtar, AWS Application Load Balancers now support native ...READ MORE
You can put a Cloudfront distribution in ...READ MORE
I don't believe you can get a ...READ MORE
Make sure you have created the certificate ...READ MORE
Hi, It totally depends on your understanding and ...READ MORE
Security groups present in a VPC provides ...READ MORE
Security groups in a VPC is basically ...READ MORE
Stateful filtering is used to track the ...READ MORE
context.done has to be included after the ...READ MORE
During the first time boot, the application ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.