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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.