我試圖在Nginx中的http指令內映射一個變量。Map指令內部的可變插值
當獨立時,如果我向字符串添加其他任何內容,擴展停止工作,變量本身就會擴展。
http {
map $host $foo {
#default "$host"; # - this works fine and returns 'localhost'
default "This is my host: $host"; # - THIS DOESN'T WORK
}
server {
location/{
echo $foo;
}
}
}
你有什麼建議可以在地圖內進行擴展工作嗎?
籌集了Ningx票http://trac.nginx.org/nginx /門票/ 663#門票 – user745079
看起來像門票被接受和完成2016年5月 – REW