Skip to content

Instantly share code, notes, and snippets.

@iamblue
Created February 27, 2014 03:45
Show Gist options
  • Select an option

  • Save iamblue/9243989 to your computer and use it in GitHub Desktop.

Select an option

Save iamblue/9243989 to your computer and use it in GitHub Desktop.
nginx default
server{
#...
if ($http_user_agent ~ (Googlebot|faceboo54kexternalhit)) {
rewrite ^ /seo$uri last;
}
location /seo {
proxy_pass http://localhost:3333;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment