From 56bf3f8add8ba9afb7a683a3cb915696bc861daa Mon Sep 17 00:00:00 2001 From: Nick Semenkovich Date: Mon, 27 Jun 2016 20:10:22 -0500 Subject: [PATCH] Fix documentation for auth_request directive The correct endpoint is /oauth2/auth --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9a0eb82..509f4c8 100644 --- a/README.md +++ b/README.md @@ -350,13 +350,13 @@ server { server_name ...; include ssl/ssl.conf; - location = /auth { + location = /oauth2/auth { internal; proxy_pass http://127.0.0.1:4180; } location / { - auth_request /auth; + auth_request /oauth2/auth; error_page 401 = ...; root /path/to/the/site;