Skip to content

Instantly share code, notes, and snippets.

@caironoleto
Forked from marcusvmsa/gist:1140301
Created August 11, 2011 18:04
Show Gist options
  • Save caironoleto/1140306 to your computer and use it in GitHub Desktop.
Save caironoleto/1140306 to your computer and use it in GitHub Desktop.
Tentativa de redirecionamento nginx
server_name .px2.com.br ~^(<subdomain>)\.px2\.com\.br$ ;
location / {
rewrite ^(.*)$ http://$subdomain.pixelquadrado.com.br/$1 permanent;
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment