nginx.yml 492 Bytes
Newer Older
1 2 3 4 5 6 7 8
- name: Deploy nginx
  hosts: all
  sudo: True
  gather_facts: True
  vars:
    serial_count: 1
  serial: "{{ serial_count }}"
  roles:
Edward Zarecor committed
9
    - common_vars
10 11 12 13 14 15 16
    - docker 
    - role: nginx
      nginx_sites:
      - lms
      - cms
      - xqueue
      - certs
17
      - forum
18 19 20 21 22
      nginx_default_sites:
      - lms
      nginx_extra_sites: "{{ NGINX_EDXAPP_EXTRA_SITES }}"
      nginx_extra_configs: "{{ NGINX_EDXAPP_EXTRA_CONFIGS }}"
      nginx_redirects: "{{ NGINX_EDXAPP_CUSTOM_REDIRECTS }}"