I have this config that works as expected in an empty server { }
definition
location ^~ /foo/ {
alias /var/www/foo/;
}
But when I move this in a considerably bigger server definition (one used for a WordPress multi-site config), it will stop working and wordpress will respond to it (which obviously was not my intent).
I tried to put at the begining or end of server block, but this didn't change it.
How can I force Nginx to use this location?
You are probably looking for
break
.From the
HttpRewriteModule
documentation:Location blocks in Nginx are exclusive. If you use
location ^~
then other rules probably expiry headers for static objects will not apply unless you copy those rules as nested under the same location block.If you could share your full config then I can make it work for you. Most likely you need to use nested location blocks.
Trailing slash will be a problem if it is not present in URI. See https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selection-algorithms#matching-location-blocks