Commit 90d7a316 by Han Su Kim

Turning off basic auth for segement.io

parent c22e5f42
......@@ -65,6 +65,10 @@ server {
{% include "basic-auth.j2" %}
try_files $uri @proxy_to_lms_app;
}
# No basic auth for /segmentio/event
location /segmentio/event {
try_files $uri @proxy_to_lms_app;
}
location /notifier_api {
try_files $uri @proxy_to_lms_app;
......@@ -87,7 +91,7 @@ server {
location /courses {
{%- if EDXAPP_ENABLE_RATE_LIMITING -%}
# Set Limit
# Set Limit
limit_req zone=cookies burst={{ EDXAPP_COURSE_REQUEST_BURST_RATE }};
error_page 503 = /server/rate-limit.html;
{%- endif -%}
......
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