Skip to content

Instantly share code, notes, and snippets.

@pjendrusik
Created September 2, 2014 09:21
Show Gist options
  • Save pjendrusik/bd75f3345391af0d4618 to your computer and use it in GitHub Desktop.
Save pjendrusik/bd75f3345391af0d4618 to your computer and use it in GitHub Desktop.
#nginx: redirect subdomain to url
server {
server_name blog.example.com;
rewrite ^(.*) http://magazyn.example.com permanent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment