Unverified Commit 93d7741d by Cory Lee Committed by GitHub

Handle nonencrypted connections to ELB (#4565)

* Handle nonencrypted connections to ELB

* fix

* names

* rm

* ip_disclosure_on_redirect

* forgot

* spacing
parent 94b4cf9d
...@@ -8,13 +8,13 @@ ...@@ -8,13 +8,13 @@
server { server {
server_name {{ edx_django_service_hostname }}; server_name {{ edx_django_service_hostname }};
listen {{ edx_django_service_nginx_port }}; listen {{ edx_django_service_nginx_port }};
{% if NGINX_ENABLE_SSL or NGINX_REDIRECT_TO_HTTPS %}
if ( $host ~ "\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}") { {% if NGINX_ENABLE_SSL %}
return 403; {% include "concerns/handle-ip-disclosure.j2" %}
}
rewrite ^ https://$host$request_uri? permanent; rewrite ^ https://$host$request_uri? permanent;
{% else %} {% else %}
{% include "concerns/app-common.j2" %} {% include "concerns/handle-tls-terminated-elsewhere-redirect.j2" %}
{% include "concerns/app-common.j2" %}
{% endif %} {% endif %}
} }
......
{% if NGINX_REDIRECT_TO_HTTPS %}
{% include "concerns/handle-ip-disclosure.j2" %}
{% if NGINX_HTTPS_REDIRECT_STRATEGY == "scheme" %}
if ($scheme != "https")
{
set $do_redirect_to_https "true";
}
{% elif NGINX_HTTPS_REDIRECT_STRATEGY == "forward_for_proto" %}
if ($http_x_forwarded_proto = "http")
{
set $do_redirect_to_https "true";
}
{% endif %}
if ($do_redirect_to_https = "true")
{
return 301 https://$host$request_uri;
}
{% 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