У якому порядку вводяться директиви про місцезнаходження?
У якому порядку вводяться директиви про місцезнаходження?
Відповіді:
Приклад з документації:
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 ]
}
Якщо це все ще заплутано, ось довше пояснення .
/
та /documents/
правила відповідають запиту /documents/index.html
, але останнє правило має перевагу, оскільки це найдовше правило.
Він спрацьовує в цьому порядку.
=
(точно)
location = /path
^~
(форвард)
location ^~ /path
~
(залежність від регістру звичайного виразу)
location ~ /path/
~*
(регістр регулярних виразів нечутливий)
location ~* .(jpg|png|bmp)
/
location /path
Зараз є зручний онлайн-інструмент для тестування пріоритету місцезнаходження :
тестування пріоритету місцеположення в Інтернеті