Commit ec12c57f by Kevin Falcone

Whitelist the lti_provider endpoint

This uses OAuth1 and configured tokens and shouldn't use basic auth.
parent 2a482e9e
......@@ -149,6 +149,11 @@ error_page {{ k }} {{ v }};
try_files $uri @proxy_to_lms_app;
}
# No basic auth on the LTI provider endpoint, it does OAuth1
location /lti_provider {
try_files $uri @proxy_to_lms_app;
}
location /courses {
{%- if EDXAPP_ENABLE_RATE_LIMITING -%}
# Set Limit
......
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