amazon-elb

How to implement HTTP Strict Transport Security (HSTS) on AWS Elastic Load Balancer?

风流意气都作罢 提交于 2020-08-22 11:54:31
问题 I would like to implement HSTS to my application. I have an ELB terminating SSL and forwarding the traffic to my application, which is an apache server used as reverse proxy. I know that in order to implement HSTS, I would need to add the header Strict-Transport-Security to my request. Unfortunately, it seems that I cannot implement it on my Apache server as it would have to be added to the HTTPS Virtual Host and my Apache only has the http virtual host configured, since the SSL is terminated

AWS ELB - will it retry request if node fails?

故事扮演 提交于 2020-07-06 09:48:13
问题 I have an ELB and 3 nodes behind it. Can someone please explain me what will ELB do in these scenarios: Client Request -> ELB -> Node1 fails in the middle of the request (ELB timeout) Client Request -> ELB -> Node1 timeouts (Server timeout and health check haven't kicked in yet) Particularly I'm wondering if ELB retries the request to another node? I made a test and it doesn't seem to, but maybe there's a setting that I've missed. Thanks, 回答1: The AWS Elastic Load Balancing service uses

AWS ELB - will it retry request if node fails?

久未见 提交于 2020-07-06 09:47:31
问题 I have an ELB and 3 nodes behind it. Can someone please explain me what will ELB do in these scenarios: Client Request -> ELB -> Node1 fails in the middle of the request (ELB timeout) Client Request -> ELB -> Node1 timeouts (Server timeout and health check haven't kicked in yet) Particularly I'm wondering if ELB retries the request to another node? I made a test and it doesn't seem to, but maybe there's a setting that I've missed. Thanks, 回答1: The AWS Elastic Load Balancing service uses

AWS application load balancer listener rule paths

[亡魂溺海] 提交于 2020-06-14 06:36:25
问题 Configuring an application load balancer. I have 3 separate target groups and about 30 different paths I'd like to filter on. When filling out path pattern what are the possible values? Given it's called "pattern" gives the impression it can accept regex but validation is preventing this. Is it possible to match multiple paths to a target group or will I have to create a separate rule for each path? I realise using an additional level in my paths (ie /group1/path, /group2/path) would simplify