0.1.15-DEV-20191117-205920

--------------------------
    * ADD:
      - add tags to each task
      - added clean deploy task for site removals; will only run if task tag is used
      - added tower2.thezengarden.net to site list for testing awx installs/upgrades

    * MODIFY:
      - modified awx site reference to be tower
This commit is contained in:
2019-11-17 21:01:11 -05:00
parent 6b81563739
commit 3b5a8e2c54
4 changed files with 28 additions and 2 deletions

View File

@ -35,6 +35,11 @@ client_max_body_size {{ proxy_sites[item.key]['max_upload'] }};
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Host $host;
{% if item.key == "tower.thezengarden.net" or item.key == "tower2.thezengarden.net" %}
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
{% endif %}
proxy_pass {{ proxy_sites[item.key]['proto'] }}://{{ proxy_sites[item.key]['dest'] }}:{{ proxy_sites[item.key]['port'] }};