Take the 2-minute tour ×
Code Review Stack Exchange is a question and answer site for peer programmer code reviews. It's 100% free, no registration required.

I have two working configurations that, on the surface, seem to do the same thing. They both accomplish the functionality that I need:

location ~ ^/(css|images|js)/ {
    location ~ '^/(css|js)/[0-9]{8}-(.*)$' {
        alias /$1/$2;
    }
    root /server/path/to/web/root;
}

AND

location ~ ^/(css|images|js)/ {
    rewrite '^/(css|js)/[0-9]{8}-(.*)$' /$1/$2 break;
    root /server/path/to/web/root;
}

They both take a URL like /css/87654321-styles.css and deliver the file /css/styles.css. I lean toward the second solution because it's more succinct, but I don't know if one is better than the other for performance reasons, unintended side-effects, etc.

Here's my original SO post, for reference/context: http://stackoverflow.com/q/27406188/244826


UPDATE

After being directed to the documentation for the Nginx rewrite module, I found these interesting lines:

The ngx_http_rewrite_module module directives are processed in the following order:

  • the directives of this module specified on the server level are executed sequentially;
  • repeatedly:
    • a location is searched based on a request URI;
    • the directives of this module specified inside the found location are executed sequentially;
    • the loop is repeated if a request URI was rewritten, but not more than 10 times.

So, if I used the rewrite directive without the break flag, there could be at least one additional loop of the server level directive.

share|improve this question

1 Answer 1

up vote 3 down vote accepted
  1. alias is like root, so you need to use full server path

  2. you can add break flag to rewrite for avoid internal redirect. added without break rewrite will make loop (internal redirect) for process all locations again; but break tell to rewrite do not loop and run current location.

I don't think here big difference in performance. Main difference is changing internal request uri. But in case of static files serve both work well.

share|improve this answer
    
If I use the break flag, will it still apply the following root directive in the current location? Will it process any subsequent location directives? –  Sonny Dec 12 '14 at 20:39
    
Yes, break will stop rewrite module directives only. Not 100% shure about nested location, but 99% :) Easy to check. –  Terra Dec 12 '14 at 20:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.