Advertisement
libdo

Untitled

Oct 25th, 2017
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # default branch to serve
  2. set $branch "master";
  3.  
  4. # Serve features on *.app.dev subdomain
  5. if ($host ~* ^([^.]+)\.app\.dev\.company\.com$) {
  6. set $branch $1;
  7. }
  8.  
  9. # All branches are hosted from a subdirectory
  10. root /var/www/branches/$branch;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement