Commit 2c200f1c by Fred Smith

Merge pull request #1921 from edx/derf/exclude_user_api_from_basic_auth_on_stage

exclude user_api from basic auth on stage
parents bd81f47f 61342d8e
......@@ -124,6 +124,10 @@ error_page {{ k }} {{ v }};
try_files $uri @proxy_to_lms_app;
}
location /user_api {
try_files $uri @proxy_to_lms_app;
}
# No basic auth security on the github_service_hook url, so that github can use it for cms
location /github_service_hook {
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