Question

ERR_TOO_MANY_REDIRECTS

I’m trying to configure the https protocol on my website, but i have that error in browser:

ERR_TOO_MANY_REDIRECTS

This is my /etc/nginx/sites-available/default file:

server {
    listen [::]:80;
    return 301 https://$host$request_uri;
}

server {

    listen [::]:443;
    server_name domukasi.pl www.domukasi.pl;

    location / {

      proxy_set_header        Host $host;
      proxy_set_header        X-Real-IP $remote_addr;
      proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header        X-Forwarded-Proto $scheme;

      # Fix the “It appears that your reverse proxy set up is broken" error.
      proxy_pass          http://127.0.0.1:3000;
      proxy_read_timeout  90;

      proxy_redirect      http://127.0.0.1:3000 https://domukasi.pl;
    }
  }

Can you help me?


Submit an answer
Answer a question...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

alexdo
Site Moderator
Site Moderator badge
August 20, 2019
Accepted Answer

Hello,

I had a similar issue and I’ve needed to add proxy_set_header X-Forwarded-Proto https to my nginx conf in order to sort it.

Try adding the following line in your nginx conf. Also you can always check the syntax of the nginx conf by using this command:

nginx -t

This will show you if you have any syntax errors in the configuration files.

proxy_set_header X-Forwarded-Proto https;

Let me know how it goes Alex

Hi

Only if this is not been fixed, this is a symptomatic when you have error (mostly, duplicate) of virtual hosts.

Check vh part of ssl conf (no matter when it’s placed - http main conf or separate ssl confs) and remove faulty host.

Cheers

Want to learn more? Join the DigitalOcean Community!

Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.