summaryrefslogtreecommitdiff
path: root/roles/elevate/liquidtruth/tasks/main.yml
blob: 837d2fd04e155f06bef473a8ca6880fb8328270e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
- name: prepare storage volume for /srv
  vars:
    storage_volume: "{{ liquidtruth_storage | combine({'dest': '/srv'}) }}"
  include_role:
    name: "storage/{{ liquidtruth_storage.type }}/volume"

- name: install and configure mongodb
  import_tasks: mongodb.yml

- name: install and configure nodejs
  import_tasks: nodejs.yml

- name: configure nginx vhost
  import_role:
    name: nginx/vhost
  vars:
    nginx_vhost:
      name: liquidtruth
      template: generic
      acme: true
      hostnames: "{{ liquidtruth_hostnames }}"
      locations:
        '/':
          proxy_pass: "http://127.0.0.1:8080"

- name: create app user
  user:
    name: "{{ liquidtruth_app_user }}"
    state: present
    append: yes
    shell: /bin/zsh