Question

DNS Networking redirects with Nginx to catch wildcards

What i want to do:

  1. Have two versions of the site, mobile and desktop.
  2. Force naked URI, no www visible and redirect to appropriate mobile/desktop version.
  3. Wildcard to catch all other gibberish and redirect to appropriate mobile/desktop version.

Desktop version: mysite.com Mobile version: m.mysite.com

Network DNS Screenshot

/etc/nginx/sites-available/mysite.com

server {
        listen 80;
        listen [::]:80;
        server_name www.mysite.com;

        return 301 http://mysite.com;
}

server {
        listen 80;
        listen [::]:80;

        root /var/www/mysite.com/html;

        index index.html index.htm index.nginx-debian.html;

        server_name mysite.com;

        location / {
                try_files $uri $uri/ =404;
        }
}

/etc/nginx/sites-available/m.mysite.com

server {
        listen 80;
        listen [::]:80;
        server_name www.m.mysite.com;

        return 301 http://m.mysite.com;
}

server {
        listen 80;
        listen [::]:80;

        root /var/www/m.mysite.com/html;

        index index.html index.htm index.nginx-debian.html;

        server_name m.mysite.com;

        location / {
                try_files $uri $uri/ =404;
        }
}

What I have so far

So i’ve mostly got it working, except there seems to be some issue with the wildcard redirects for the mobile version. I’d appreciate any help/feedback.


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.

Accepted Answer

@ariziragoran

When it comes to DNS WildCards, you’ll need to set them up using an A entry, which would look like:

A          *          DROPLET_IP

or

A          *.m        DROPLET_IP

The first DNS entry catches anything at the first level – www, test, forum.domain.com, etc. The second works much like the first, though it catches anything targeting m.domain.com, so:

test01.m.domain.com
test02.m.domain.com
etc

With NGINX, you would then specify the WildCard in the server_name, for example:

server_name domain.com www.domain.com *.domain.com

or

server_name m.domain.com www.m.domain.com *.m.domain.com;

The * entry tells NGINX to handle the WildCard requests, but it will only do so if the DNS is properly setup as noted above. Without the WildCard DNS, NGINX won’t handle the requests as expected.

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