src.nth.io/

summaryrefslogtreecommitdiff
path: root/roles/nginx/tasks/main.yaml
blob: 77448ffb6d44924a4708e5b0f590529a016b452e (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
---

- name: set hostname in OS
  become: yes
  hostname: name="{{inventory_hostname}}"

- name: change timezone to UTC
  become: yes
  timezone: name="UTC"

- name: install nginx packages
  become: yes
  apt: name="nginx"

- name: disable default site
  become: yes
  file: path="/etc/nginx/sites-enabled/default" state="absent"
  notify: restart nginx

- name: install site
  become: yes
  template: src="{{nginx_conf_src}}" dest="/etc/nginx/sites-available/{{nginx_conf_dst}}"
  notify: restart nginx

- import_tasks: certbot.yaml
  when: nginx_enable_ssl

- name: enable site
  become: yes
  file:
    src:  "/etc/nginx/sites-available/{{nginx_conf_dst}}"
    dest: "/etc/nginx/sites-enabled/{{nginx_conf_dst}}"
    state: "link"
  notify: restart nginx

- name: enable nginx service
  become: yes
  systemd: name="nginx" enabled="yes" state="started"