=encoding utf-8 =head1 NAME ngx_http_auth_request_module - Module ngx_http_auth_request_module =head1 The C module (1.5.4+) implements client authorization based on the result of a subrequest. If the subrequest returns a 2xx response code, the access is allowed. If it returns 401 or 403, the access is denied with the corresponding error code. Any other response code returned by the subrequest is considered an error. For the 401 error, the client also receives the C header from the subrequest response. This module is not built by default, it should be enabled with the C<--with-http_auth_request_module> configuration parameter. The module may be combined with other access modules, such as L, L, and L, via the L directive. B Before version 1.7.3, responses to authorization subrequests could not be cached (using L, L, etc.). =head1 Example Configuration location /private/ { auth_request /auth; ... } location = /auth { proxy_pass ... proxy_pass_request_body off; proxy_set_header Content-Length ""; proxy_set_header X-Original-URI $request_uri; } =head1 Directives =head2 auth_request B auth_request I> E C> B I B I B I B I Enables authorization based on the result of a subrequest and sets the URI to which the subrequest will be sent. =head2 auth_request_set B auth_request_set I> I>> B I B I B I Sets the request I> to the given I> after the authorization request completes. The value may contain variables from the authorization request, such as C<$upstream_http_*>.