在nginx中設置全局變量可以使用set
指令。以下是設置全局變量的示例:
http {
# 設置全局變量
set $my_variable "hello world";
server {
location / {
# 使用全局變量
echo $my_variable;
}
}
}
在上述示例中,我們使用set
指令將$my_variable
設置為"hello world"。然后,在location
塊中,我們使用echo
指令輸出了這個全局變量的值。