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


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

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel