Skip to content

Instantly share code, notes, and snippets.

@ottonet
Created June 24, 2015 21:58
Show Gist options
  • Save ottonet/7c98f7328677e1d22ea2 to your computer and use it in GitHub Desktop.
Save ottonet/7c98f7328677e1d22ea2 to your computer and use it in GitHub Desktop.
automatic nginx 301 www to non-www
server {
listen 80;
server_name ~^((?<subdomain>.*)\.)(?<domain>[^.]+)\.(?<tld>[^.]+)$;
return 301 $scheme://${domain}.${tld};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment