Je voudrais faire quelque chose comme :
location ~ ^/authorize/(\w+)$ {
proxy_pass http://my.vm/auth;
proxy_pass_request_body on;
proxy_set_header MY_CUSTOM_HEADER $1;
proxy_pass_request_headers on;
}
Cependant, je reçois le message d'erreur suivant :
nginx: [emerg] "proxy_pass" cannot have URI part in
location given by regular expression, or inside named location,
or inside "if" statement, or inside "limit_except" block in
nginx.conf
Toute aide serait appréciée.
Merci d'avance