W jakiej kolejności uruchamiane są dyrektywy lokalizacyjne?
W jakiej kolejności uruchamiane są dyrektywy lokalizacyjne?
Odpowiedzi:
Z dokumentacji modułu podstawowego HTTP :
Przykład z dokumentacji:
location = / {
# matches the query / only.
[ configuration A ]
}
location / {
# matches any query, since all queries begin with /, but regular
# expressions and any longer conventional blocks will be
# matched first.
[ configuration B ]
}
location /documents/ {
# matches any query beginning with /documents/ and continues searching,
# so regular expressions will be checked. This will be matched only if
# regular expressions don't find a match.
[ configuration C ]
}
location ^~ /images/ {
# matches any query beginning with /images/ and halts searching,
# so regular expressions will not be checked.
[ configuration D ]
}
location ~* \.(gif|jpg|jpeg)$ {
# matches any request ending in gif, jpg, or jpeg. However, all
# requests to the /images/ directory will be handled by
# Configuration D.
[ configuration E ]
}
Jeśli nadal jest mylące, oto dłuższe wyjaśnienie .
/
i /documents/
reguły pasują do żądania /documents/index.html
, ale ta ostatnia ma pierwszeństwo, ponieważ jest najdłuższą regułą.
Wystrzeliwuje w tej kolejności.
=
(dokładnie)
location = /path
^~
(dopasowanie do przodu)
location ^~ /path
~
(wielkość liter ma znaczenie)
location ~ /path/
~*
(wyrażenie regularne nie rozróżnia wielkości liter)
location ~* .(jpg|png|bmp)
/
location /path
Istnieje teraz przydatne narzędzie do testowania online priorytetu lokalizacji :
testowanie priorytetu lokalizacji online