мой вверх по течению:
upstream upstream_**uba1**_console_f485c00e45256742e2cc641db834b150 {
ip_hash;
server 192.30.56.172:39443;
check interval=2000 rise=1 fall=3 timeout=3000;
}
upstream upstream_**uba2**_console_f485c00e45256742e2cc641db834b150 {
ip_hash;
server 192.30.56.173:39443;
check interval=2000 rise=1 fall=3 timeout=3000;
}
мое местонахождение:
location /opsuba/ {
if ($args ~* region=(\w+?)(&|$)) {
set $region $1;
}
limit_req zone=reqconsole burst=10000 nodelay;
limit_conn connconsole 1000;
**proxy_pass https://upstream_${region}_console_f485c00e45256742e2cc641db834b150;**
include error_page_exclude_ajax.conf;
include static_file.conf;
access_log off;
}
как я могу сделать upstream_${region}_console_f485c00e45256742e2cc641db834b150
заменить переменными?