Commit e634ddce by Han Su Kim

Merge pull request #1627 from edx/origin/han/nginx-edxapp

Turning off basic auth for segement.io
parents c22e5f42 90d7a316
......@@ -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;
......
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