Commit ffc253f1 by Max Rothman Committed by GitHub

Merge pull request #3498 from edx/max/sec-220

SEC-220: Block external logged in checking
parents 7bdd9d45 118000ae
...@@ -116,6 +116,20 @@ error_page {{ k }} {{ v }}; ...@@ -116,6 +116,20 @@ error_page {{ k }} {{ v }};
{% include "python_lib.zip.j2" %} {% include "python_lib.zip.j2" %}
{% include "common-settings.j2" %} {% include "common-settings.j2" %}
{% if NGINX_EDXAPP_EMBARGO_CIDRS -%}
#only redirect to embargo when $embargo == true and $uri != /embargo
#this is a hack to do multiple conditionals
if ( $embargo ) {
set $do_embargo "A";
}
if ( $uri != "/embargo" ) {
set $do_embargo "${do_embargo}B";
}
if ( $do_embargo = "AB" ) {
return 302 /embargo;
}
{% endif -%}
location @proxy_to_lms_app { location @proxy_to_lms_app {
{% if NGINX_SET_X_FORWARDED_HEADERS %} {% if NGINX_SET_X_FORWARDED_HEADERS %}
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
...@@ -140,11 +154,22 @@ error_page {{ k }} {{ v }}; ...@@ -140,11 +154,22 @@ error_page {{ k }} {{ v }};
{% if EDXAPP_LMS_ENABLE_BASIC_AUTH|bool %} {% if EDXAPP_LMS_ENABLE_BASIC_AUTH|bool %}
{% include "basic-auth.j2" %} {% include "basic-auth.j2" %}
{% endif %} {% endif %}
{% if NGINX_EDXAPP_EMBARGO_CIDRS -%}
if ( $embargo ) { try_files $uri @proxy_to_lms_app;
return 302 /embargo;
} }
{% endif -%}
# /login?next=<any image> can be used by 3rd party sites in <img> tags to
# determine whether a user on their site is logged into edX.
# The most common image to use is favicon.ico.
location /login {
{% if EDXAPP_LMS_ENABLE_BASIC_AUTH|bool %}
{% include "basic-auth.j2" %}
{% endif %}
if ( $arg_next = "favicon.ico" ) {
return 403;
}
try_files $uri @proxy_to_lms_app; 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