Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

208
Views
Spring Boot forcing https cause redirection too many times in Google App Engine

I enabled https for all the requests within the App Engine - Flexible Environment.

override fun configure(http: HttpSecurity) {
    if (securityProperties.isRequireSsl) http.requiresChannel().anyRequest().requiresSecure()
}

But it is causing too many redirects and fails.

How to force https with Spring Boot on App Engine?

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

The Google Cloud Load Balancer terminates all https connections, and then forwards traffic to App Engine instances over http. Read More

Which was causing the redirects as the Spring Application was unaware of this switch.

App Engine proxies the request to the application by adding the X-Forwarded-Proto and X-Forwarded-For headers with which spring identifies the actual request protocol and where the request actually originated from.

To enable such behavior, I added the following configuration in application.yml:

server:
  tomcat:
    remote_ip_header: X-Forwarded-For
    protocol_header: X-Forwarded-Proto
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!