From 25d355fdc48e1630d7847d7238b1dd49f2e618a4 Mon Sep 17 00:00:00 2001 From: Dmitry Ilvokhin Date: Sat, 13 Jan 2024 17:38:13 +0000 Subject: Add role for ilvokhin.com --- roles/home/tasks/main.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 roles/home/tasks/main.yml (limited to 'roles/home/tasks') diff --git a/roles/home/tasks/main.yml b/roles/home/tasks/main.yml new file mode 100644 index 0000000..cd6b19c --- /dev/null +++ b/roles/home/tasks/main.yml @@ -0,0 +1,39 @@ +- name: Create /srv/http/ilvokhin.com directory + ansible.builtin.file: + path: /srv/http/ilvokhin.com + state: directory + owner: http + group: http + mode: u+rw,g+rw,o+r + +- name: Request SSL certificate for ilvokhin.com + ansible.builtin.include_role: + name: certificate + vars: + domains: + - ilvokhin.com + - www.ilvokhin.com + +- ansible.builtin.include_role: + name: nginx + +- name: Configure nginx for ilvokhin.com + ansible.builtin.copy: + src: files/ilvokhin.com + dest: /etc/nginx/sites-available + owner: root + group: root + mode: u+rw,g+r,o+r + notify: + - Reload nginx + +- name: Enable ilvokhin.com site + ansible.builtin.file: + src: /etc/nginx/sites-available/ilvokhin.com + dest: /etc/nginx/sites-enabled/ilvokhin.com + owner: root + group: root + mode: u+rw,g+r,o+r + state: link + notify: + - Reload nginx -- cgit v1.2.3-70-g09d2