nginx.conf:
location / {
....
set $var "$uri=200k"
....
and run "curl localhost/"
The module use ngx_http_get_indexed_variable() for $var will get the string "/=200k", but I want the value is "$uri=200k".
So any escape character supported in nginx.conf?
THANKS.
--
Best Regard.