Nginx www to non-www redirect

582 Views Asked by At

I need to add www to non-www redirect to nginx config. Here's the part of the config file (seems like whole config is too long for stack overflow):

user                            nginx;
worker_processes                1;
error_log                       /var/deploy/mydomain/web_head/shared/log/nginx_error.log;

events 
{
  worker_connections          1024;

}

http 
{
  gzip                        on;

  ...

  server {
        server_name www.mydomain.com;
        return 301 $scheme://mydomain.com$request_uri;
    }

    server 
    {
    listen                  80 default_server;
    server_name             _;

    rails_env               production;
    passenger_enabled       on;

    root                    /var/deploy/mydomain/web_head/current/public;

    client_max_body_size    50m;
    # redirect to 503 if maintenance page present
    if (-f $document_root/cloud66_maintenance.html) 
    {
      return 503;
    }

    # redirect on errors
    error_page              500 502 504  /50x.html;
    error_page              503 @maintenance;

    # handle error redirect
    location = /50x.html
    {
      root html;
    }

    location @maintenance
    {
      error_page 405 = /cloud66_maintenance.html;
      if (-f $document_root/cloud66_maintenance.html)
      {
          rewrite ^(.*)$ /cloud66_maintenance.html break;
      }
      rewrite ^(.*)$ /503.html break;
    }



    try_files $uri /cloud66_maintenance.html @passenger;
    location @passenger
    {
      passenger_enabled           on;
      passenger_min_instances     5;
      passenger_set_cgi_param     HTTP_X_FORWARDED_PROTO $scheme;
    }

    location ~ \.php$
    {
      deny  all;
    }
  }


}

It didn't work. I even tried adding following block to the end:

server {
    server_name www.mydomain.com;
    return 301 $scheme://mydomain.com$request_uri;
}

And also tried replacing server_name _; with server_name mydomain.com..

Thanks!

3

There are 3 best solutions below

2
On

Cloud 66 automatically reloads the configuration if you are using CustomConfig. You can try this one:

if ($http_host = www.mydomain.com) {
   rewrite  (.*)  http://mycomain.com$1 permanent;
}

This can be under your server section

0
On

I ended up using dnsimple url forwarding service: https://dnsimple.com/url-forwarding-301-redirect. Works great without the need to edit nginx config.

0
On

Add a new server block at the end of your configuration file.

server {
    listen 80;
    server_name www.your-domain.com;
    return 301 $scheme://your-domain.com$request_uri;
}

A detailed tutorial on enabling www redirect with nginx can be found here