Commit 5bbbbbf6 by Edward Zarecor

Moving heartbeat

parent beb11c51
......@@ -53,6 +53,11 @@ error_page {{ k }} {{ v }};
listen {{ EDXAPP_LMS_NGINX_PORT }} {{ default_site }};
# No basic auth security on the heartbeat url, so that ELB can use it
location /heartbeat {
try_files $uri @proxy_to_lms_app;
}
{% if NGINX_ENABLE_SSL %}
listen {{ EDXAPP_LMS_SSL_NGINX_PORT }} {{ default_site }} ssl;
......@@ -165,12 +170,6 @@ error_page {{ k }} {{ v }};
try_files $uri @proxy_to_lms_app;
}
# No basic auth security on the heartbeat url, so that ELB can use it
location /heartbeat {
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;
......
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