Commit fd3c693c by Fred Smith

Merge pull request #2277 from edx/derf/permit_LTI_auth_requests_through_basic_auth

permit LTI auth requests through basic auth
parents 15939786 99832399
......@@ -139,11 +139,17 @@ error_page {{ k }} {{ v }};
try_files $uri @proxy_to_lms_app;
}
# No basic auth security on oath2 endpoint
# No basic auth security on oauth2 endpoint
location /oauth2 {
try_files $uri @proxy_to_lms_app;
}
# No basic auth security on third party auth endpoints
location /auth {
try_files $uri @proxy_to_lms_app;
}
# No basic auth security on the heartbeat url, so that ELB can use it
location /heartbeat {
try_files $uri @proxy_to_lms_app;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment