aboutsummaryrefslogtreecommitdiff
path: root/roles/nginx/tasks/main.yml
blob: f2e4c7a79de330a4ef14c5e63cccd49d5f158120 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
- name: Install packages
  apt:
    name:
      - nginx
  become: true

- name: Install site config
  template:
    src: nginx.conf.j2
    dest: '/etc/nginx/sites-available/{{ item.key }}'
  become: true
  with_dict: '{{ nginx.servers }}'
  notify:
    - restart nginx

- name: Enable sites
  file:
    src: '/etc/nginx/sites-available/{{ item.key }}'
    dest: '/etc/nginx/sites-enabled/{{ item.key }}'
    state: link
  become: true
  with_dict: '{{ nginx.servers }}'
  notify:
    - restart nginx

- name: Find old site links
  find:
    paths: '/etc/nginx/sites-enabled/'
    excludes: '{{ nginx.servers.keys() }}'
    file_type: link
    depth: false
  become: true
  register: links_to_delete

- name: Find old site files
  find:
    paths: '/etc/nginx/sites-available/'
    excludes: '{{ nginx.servers.keys() }}'
    file_type: file
    depth: false
  become: true
  register: files_to_delete

- name: Delete old site files and links
  file:
    path: "{{ item.path }}"
    state: absent
  with_items: "{{ links_to_delete.files + files_to_delete.files }}"
  become: true
  notify:
    - restart nginx