你可以做一个小技巧。如果必须可以从一个server
块中的每个块访问此值,http
则可以使用map
指令。这将如何运作?
该map
指令允许您在块中的任何位置使用变量,该变量的http
值将在某个映射键上计算。万能的例子:
http {
...
/*
value for your $my_everywhere_used_variable will be calculated
each time when you use it and it will be based on the value of $query_string.
*/
map $query_string $my_everywhere_used_variable {
/*
if the actual value of $query_string exactly match this below then
$my_everywhere_used_variable will have a value of 3
*/
/x=1&y=2&opr=plus 3;
/*
if the actual value of $query_string exactly match this below then
$my_everywhere_used_variable will have a value of 4
*/
/x=1&y=4&opr=multi 4;
/*
it needs to be said that $my_everywhere_used_variable's value is calculated each
time you use it. When you use it as pattern in a map directive (here we used the
$query_string variable) some variable which will occasionally change
(for example $args) you can get more flexible values based on specific conditions
*/
}
// now in server you can use this variable as you want, for example:
server {
location / {
rewrite .* /location_number/$my_everywhere_used_variable;
/*
the value to set here as $my_everywhere_used_variable will be
calculated from the map directive based on $query_string value
*/
}
}
}
那么现在,这对你意味着什么?您可以使用该map
指令通过这个简单的技巧为所有server
块设置全局变量。您可以使用default
关键字为您的地图值设置默认值。就像这个简单的例子一样:
map $host $my_variable {
default lalalala;
}
在这个例子中,我们计算$my_variable
on 的$host
值,但实际上它并不重要,$host
因为我们总是将lalalala默认设置为我们的变量的值,并且没有其他选项。现在在您的代码中的任何地方,当您$my_variable
以与所有其他可用变量相同的方式使用时(例如使用set
指令创建),您将获得lalalala的值
为什么这比简单地使用set
指令更好?因为set
指令,正如文档所说,nginx set 指令只能在server, location and if
块内访问,所以它不能用于为多个server
块创建全局变量。
此处提供有关map
指令的文档:map 指令