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?