Skip to content

Instantly share code, notes, and snippets.

@boutell
Created June 6, 2014 15:47
Show Gist options
  • Save boutell/3be15e4b5c72597db273 to your computer and use it in GitHub Desktop.
Save boutell/3be15e4b5c72597db273 to your computer and use it in GitHub Desktop.
nginx redirect example
server {
listen 80;
server_name oldname;
location / {
rewrite ^(.*)$ http://newname$1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment