vagrant-fullstack.yml 701 Bytes
Newer Older
1
- name: Configure instance(s)
2
  hosts: all
3 4 5 6 7
  sudo: True
  gather_facts: True
  vars:
    migrate_db: "yes"
    openid_workaround: True
8
    EDXAPP_LMS_NGINX_PORT: '80'
9
    edx_platform_version: 'master'
10 11 12
  vars_files:
    - "group_vars/all"
  roles:
13
    - edx_ansible
John Jarvis committed
14
    - user
15 16 17
    - role: nginx
      nginx_sites:
      - cms
18 19
      - lms
      - ora
20
      - forum
21
      - xqueue
22 23 24
      nginx_default_sites:
      - lms
      - cms
25
    - edxlocal
26
    - mongo
27
    - { role: 'edxapp', celery_worker: True }
28
    - edxapp
29
    - demo
30
    - { role: 'rabbitmq', rabbitmq_ip: '127.0.0.1' }
31 32 33
    - oraclejdk
    - elasticsearch
    - forum
34
    - { role: "xqueue", update_users: True }
35
    - ora
John Jarvis committed
36
    - edx_ansible