Report this

What is the reason for this report?

Should I use nginx or route53 for redirect?

Posted on September 15, 2020

I have a question what should I use for subdomain redirection

I want to create

webmail.mywebsite.com and then redirect it to gmail.com

I try to do thet with nginx

server{ server_name webmail.mywebsite.com 301 https://www.gmail.com }

But nothing happens when I try to open webmail.mywebsite.com

So I get idea that maybe I should use route53 if so what do you think what record should I put ?



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.

Route53 can’t return redirects, it’s DNS system. You need to us Nginx.

Your problem seems to be the Nginx config file is incorrect. I’ve copied and pasted a working Nginx config I have and changed the domains for you

server { listen 80; server_name webmail.mywebsite.com; return 301 https://www.gmail.com; } Your config appears to simply be missing is the word “return” in front of the 301.

If you want to redirect https then that’s a little more work, as you need a certificate and such. You can find examples online.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.