Commit a8339b44 by Fred Smith

Merge pull request #2695 from edx/derf/disable_basic_auth_on_course_assets

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