Regarding nginx reverse proxy I am struggling to get the parameters values from the request URL in NGINX conf.d
here aa501030-e93e-11eb-bdcf-531cdb7c714a in URL is the dynamic part. I just need the value of param1.
the below code worked fine for me if URL is just https://abcd.cloudfront.net?param1="somecryptedvalue=="
if ($args ~ "^url=(.+)") { #gets the "url" get parameter set $key1 $1;
}