Hi,

Here is my location directive :

server {
  # Start with an undefined API name, each API will update this value
  set $api_name -;

  [...]

  location = /_oauth {
    internal;
    set $api_name 'Oauth API';

    # Policy configuration here (authentication, rate limiting, logging, 
more...)
    mirror /_mirrored_api;
    proxy_pass http://$upstream$request_uri;
  }
}

In my log I only get “-“ as api_name but if I comment the mirror directive I 
get 'Oauth API’.

Any idea how to avoid that.
I always want the name to be ''Oauth API’'.

Regards,

Mickaël Palma
Responsable domaine & valorisation

11-13 rue des Petits Hôtels
75010 Paris
Tel :  01.53.29.35.53  |  Fax : 01.53.29.11.66

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to