CORS/HTTPS issues with Elastic Beanstalk and load balancer

0

We have a springboot backend api running on elastic beanstalk. Our domain is on route53 and uses the Certificate Manager to run as https.

To make an api request we send the request to a subdomain url (https://api.SomeWebsite.com ). In Route53 we direct that subdomain to an EC2 load balancer, which then points that at the beanstalk instance. Our beanstalk should be in http - we are using the LB as an SSL terminator.

We have listeners for incoming traffic on the LB as:

HTTP , Port 80 -> Redirect to HTTPS

HTTPS, Port 443 -> Redirect to Target, HTTP, OurBeanstalkENV.

I have triple checked that the https port points to the correct EB instance, and it does note http on the target selection. +

The Issue: we keep getting either preflight failed due to no Access-Control-Allow-Origin (it's in the request header) or a timeout error error when make the requests. When we look at beanstalk logs, our springboot server has an error: java.lang.IllegalArgumentException: Invalid character found in method name... HTTP method names must be tokens...

Based on this error Springboot is receiving httpS requests, even though it should be receiving http via the load balancer. Does anyone know what could be wrong here?

mehiatt
已提問 2 年前檢視次數 5169 次
1 個回答
0

Make sure you are also configuring the redirection rule for the HTTP listener, see this guide for a step-by-step: https://aws.amazon.com/premiumsupport/knowledge-center/elb-redirect-http-to-https-using-alb/

AWS
專家
Lucas_R
已回答 2 年前
  • If I have single instance environment, then how to do redirection from http to https without using load balancer, and certificate will be from Let's encrypt.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南