Commit bd1921ce by Fred Smith

disable basic auth on course assets

parent 8db7eb1c
......@@ -171,6 +171,14 @@ error_page {{ k }} {{ v }};
try_files $uri @proxy_to_lms_app;
}
# No basic auth security on assets
location /c4x {
try_files $uri @proxy_to_lms_app;
}
location /asset {
try_files $uri @proxy_to_lms_app;
}
# No basic auth security on the heartbeat url, so that ELB can use it
location /heartbeat {
......
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