Skip to content

Instantly share code, notes, and snippets.

@j00bar
Created October 31, 2013 21:12
Show Gist options
  • Save j00bar/7257281 to your computer and use it in GitHub Desktop.
Save j00bar/7257281 to your computer and use it in GitHub Desktop.
map $host $desktop_host {
default $host;
~^m\.(?<domain>.*) $domain;
}
server {
# ... snip ...
if ($desktop_rewrite = perform) {
rewrite ^(.*)$ http://$desktop_host$1;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment