吗?表示ngx_postgres可以作为变量foo访问它吗?
我只需要确认一下。 https://github.com/FRiCKLE/ngx_postgres#sample-configuration-5
这是纯粹的ngx_postgres函数还是nginx独立版也可以使用?
答案 0 :(得分:1)
这是nginx标准regex named captures功能:
例如:
有了这个位置:
location ~ /numbers/(?<num>\d+) {
# I captured one ore more digits into the variable $num
...
}
如果请求是/ numbers / 100
变量 $ num (值为100)可在您所在的位置使用。