summaryrefslogtreecommitdiff
path: root/roles/web/tasks/nginx.yml
blob: 43f7058b9645174050568f68e36bfc2d95cd0f8e (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
33
34
35
36
37
38
39
40
- name: Install nginx
  ansible.builtin.package:
    name:
      - nginx
    state: present

- name: Enable nginx systemd service
  ansible.builtin.service:
    name: nginx
    enabled: yes
    state: started

- name: Setup sites directories to serve by nginx
  ansible.builtin.file:
    path: '{{ item }}'
    state: directory
    owner: root
    group: root
    mode: u+rw,g+r,o+r
  loop:
    - /etc/nginx/sites-available
    - /etc/nginx/sites-enabled

- name: Configure nginx
  ansible.builtin.copy:
    src: roles/web/files/nginx/nginx.conf
    dest: /etc/nginx/nginx.conf
    owner: root
    group: root
    mode: u+rw,g+r,o+r
  notify:
    - Reload nginx

- name: Configure nginx logrotate
  ansible.builtin.copy:
    src: roles/web/files/nginx/nginx.logrotate
    dest: /etc/logrotate.d/nginx
    owner: root
    group: root
    mode: u+rw,g+r,o+r