Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. server {
  2. set $branched_location @some_named_location;
  3.  
  4. if ( some_condition ) {
  5. set $branched_location @some_other_named_location;
  6. }
  7.  
  8. location / {
  9. try_files $uri $branched_location;
  10. }
  11.  
  12. location @some_named_location {
  13. }
  14.  
  15. location @some_other_named_location {
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement