nginx-auth-request-module icon indicating copy to clipboard operation
nginx-auth-request-module copied to clipboard

error_page on server level not respected

Open ScreamingDev opened this issue 9 years ago • 0 comments

auth_request and error_page on server lever does not work. The error page does not show up.


#works not
#         auth_request /foo-auth;
#        error_page 401 @foo-authentication;
# neither other way around

location / {
        # works
        auth_request /foo-auth;
        error_page 401 @foo-authentication;

ScreamingDev avatar Jan 22 '17 03:01 ScreamingDev