Hi, I just set up SSL with my web app following the instructions provided in the document “https://www.digitalocean.com/community/tutorials/how-to-set-up-shiny-server-on-ubuntu-16-04.” But since doing it, I have been getting the error “ERRTOOMANY_REDIRECTS”. Would my NGINX file be the problem? In case it can help, here is my NGINX file:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
server_name agreestat.net www.agreestat.net;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl;
server_name agreestat.net www.agreestat.net;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers AES256+EECDH:AES256+EDH:!aNULL;
location / {
proxy_pass http://67.207.84.153:3838;
proxy_redirect http://67.207.84.153:3838/ https://$host/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_read_timeout 20d;
}
}
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.
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.
Hello, @gwet
Can you try modifying the port80 server block to:
Test the nginx config file for syntax errors:
If all is good, restart and try again.
Let me know how it goes.