Skip to content

Instantly share code, notes, and snippets.

@mzdravkov
Created March 9, 2014 16:09
Show Gist options
  • Save mzdravkov/9450004 to your computer and use it in GitHub Desktop.
Save mzdravkov/9450004 to your computer and use it in GitHub Desktop.
nginx
server {
listen 41013;
server_name xyz.com;
rewrite ^(.*) http://llama.xyz.com/$1 permanent;
}
server {
listen 80;
server_name llama.xyz.com;
# some config...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment