Reputation: 73
I'm trying to implement the following rule:
location ~ ^/stylesheets|javascripts|assets/
However it's matching against:
mysite.com/something/something/javascripts
My thought was this simple regex would only match.
mysite.com/javascripts
I want it to ignore nesting, what is wrong here?
Upvotes: 0
Views: 973
Reputation:
You have to group the OR'ed expression: ^/(stylesheets|javascripts|assets)/
Otherwise you'd have three slightly different potential matches:
/stylesheets
,javascripts
somewhere andassets/
anywhere.Upvotes: 3