Commit 06ca79c9 by Fred Smith

put the apros upstream def back

The lms role gets installed first.  by referencing this upstream server,
we introduce a dependency on the upstream definition before it is
defined by the apros role.
parent 2439a083
......@@ -11,6 +11,12 @@ upstream lms-backend {
}
upstream apros_app_server {
{% for host in nginx_apros_gunicorn_hosts %}
server {{host}}:{{mcka_apros_gunicorn_port}} fail_timeout=0;
{% endfor %}
}
{%- if EDXAPP_ENABLE_RATE_LIMITING -%}
# Make Zone
limit_req_zone $cookie_{{ EDXAPP_SESSION_COOKIE_NAME }} zone=cookies:10m rate={{ EDXAPP_COURSES_REQUEST_RATE }};
......
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