Skip to content

Instantly share code, notes, and snippets.

@mgax
Created May 22, 2015 12:46
Show Gist options
  • Save mgax/7e03f7d0c5f0c9387255 to your computer and use it in GitHub Desktop.
Save mgax/7e03f7d0c5f0c9387255 to your computer and use it in GitHub Desktop.
nginx static websites config
server {
listen 80;
server_name ~^(?<name>.+)\.static\.devel$;
root /var/local/www-static/$name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment