файл AB C
sample/xyz/xyz/ should map to /abc/abc/
sample/foo/foo/ should map to /bar/bar/
nginx .conf
include ABC
location sample/ {
local url = ngx.var.uri #(uri = sample/xyz/xyz/)
######## Do something here so that variable url value is changed based on the value in File ABC########
url = /abc/abc/ #(change URI after lookup from file ABC)
}