Konum direktifleri hangi sırayla açılır?
Konum direktifleri hangi sırayla açılır?
Yanıtlar:
Gönderen HTTP çekirdek modülü docs :
Belgelerden örnek:
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 ]
}
Hala kafa karıştırıcıysa, daha uzun bir açıklama .
/
ve /documents/
kurallar istekle eşleşen /documents/index.html
, ancak en uzun kuraldır beri İkinci kural önceliklidir.
Bu sırayla ateşlenir.
=
(kesinlikle)
location = /path
^~
(ileri eşleşme)
location ^~ /path
~
(düzenli ifade büyük / küçük harfe duyarlıdır)
location ~ /path/
~*
(düzenli ifade büyüklüğüne duyarsız)
location ~* .(jpg|png|bmp)
/
location /path
Şu anda konum önceliği için kullanışlı bir çevrimiçi test aracı var:
çevrimiçi konum önceliği testi