Commit 61342d8e by Fred Smith

exclude user_api from basic auth on stage

parent bd81f47f
......@@ -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