Commit a6629604 by John Jarvis

adding lists of hosts for nginx backends

parent 9403d5be
...@@ -4,6 +4,18 @@ pkgs: ...@@ -4,6 +4,18 @@ pkgs:
nginx: nginx:
state: installed state: installed
nginx_xserver_gunicorn_hosts:
- 127.0.0.1
nginx_xqueue_gunicorn_hosts:
- 127.0.0.1
nginx_ora_gunicorn_hosts:
- 127.0.0.1
nginx_lms_gunicorn_hosts:
- 127.0.0.1
nginx_lms_preview_gunicorn_hosts:
- 127.0.0.1
nginx_cms_gunicorn_hosts:
- 127.0.0.1
nginx_cfg: nginx_cfg:
# - link - turn on # - link - turn on
......
upstream cms-backend { upstream cms-backend {
# For a TCP configuration: {% for host in nginx_cms_gunicorn_hosts %}
server {{ edxapp_cms_gunicorn_host }}:{{ edxapp_cms_gunicorn_port }} fail_timeout=0; server {{ host }}:{{ edxapp_cms_gunicorn_port }} fail_timeout=0;
{% endfor %}
} }
server { server {
......
upstream lms-preview-backend { upstream lms-preview-backend {
# For a TCP configuration: {% for host in nginx_lms_preview_gunicorn_hosts %}
server {{ edxapp_lms_preview_gunicorn_host }}:{{ edxapp_lms_preview_gunicorn_port }} fail_timeout=0; server {{ host }}:{{ edxapp_lms_preview_gunicorn_port }} fail_timeout=0;
{% endfor %}
} }
server { server {
......
upstream lms-backend { upstream lms-backend {
# For a TCP configuration: {% for host in nginx_lms_gunicorn_hosts %}
server {{ edxapp_lms_gunicorn_host }}:{{ edxapp_lms_gunicorn_port }} fail_timeout=0; server {{ host }}:{{ edxapp_lms_gunicorn_port }} fail_timeout=0;
{% endfor %}
} }
server { server {
......
upstream app_server { upstream app_server {
# For a TCP configuration: {% for host in nginx_ora_gunicorn_hosts %}
server {{ ora_gunicorn_host }}:{{ ora_gunicorn_port }} fail_timeout=0; server {{ host }}:{{ ora_gunicorn_port }} fail_timeout=0;
{% endfor %}
} }
server { server {
......
upstream xqueue_app_server { upstream xqueue_app_server {
# For a TCP configuration: {% for host in nginx_xqueue_gunicorn_hosts %}
server {{ xqueue_gunicorn_host }}:{{ xqueue_gunicorn_port }} fail_timeout=0; server {{ host }}:{{ xqueue_gunicorn_port }} fail_timeout=0;
{% endfor %}
} }
server { server {
......
...@@ -9,8 +9,9 @@ ...@@ -9,8 +9,9 @@
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples. # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
## ##
upstream xserver_app_server { upstream xserver_app_server {
# For a TCP configuration: {% for host in nginx_xserver_gunicorn_hosts %}
server {{ xserver_gunicorn_host }}:{{ xserver_gunicorn_port }} fail_timeout=0; server {{ host }}:{{ xserver_gunicorn_port }} fail_timeout=0;
{% endfor %}
} }
server { server {
......
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