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?
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!
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.
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:
This will show you if you have any syntax errors in the configuration files.
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