ansible-personal/roles/nginx/tasks/main.yml

141 lines
3.0 KiB
YAML
Raw Permalink Normal View History

---
- name: Remove nginx apt signing key from apt-key
2023-08-10 22:44:47 +02:00
ansible.builtin.apt_key:
2023-08-23 21:22:51 +02:00
id: "053473772654754373614404074646527257655730117366337542"
state: absent
tags:
- packages
- nginx
- name: Check nginx apt signing key
ansible.builtin.stat:
path: /usr/share/keyrings/nginx_signing.key
register: nginx_signing_key_stat
2023-08-10 22:44:47 +02:00
tags:
- packages
2023-08-10 22:44:47 +02:00
- nginx
- name: Download nginx apt signing key
ansible.builtin.get_url:
url: https://nginx.org/keys/nginx_signing.key
dest: /usr/share/keyrings/nginx_signing.key
owner: root
group: root
2023-08-23 21:22:51 +02:00
mode: "0644"
register: download_nginx_signing_key
when: not nginx_signing_key_stat.stat.exists
tags:
2023-08-10 22:44:47 +02:00
- packages
- nginx
- name: Add nginx.org repo
2023-08-10 22:44:47 +02:00
ansible.builtin.template:
src: nginx_org_sources.list.j2
dest: /etc/apt/sources.list.d/nginx_org_sources.list
owner: root
group: root
2023-08-23 21:22:51 +02:00
mode: "0644"
register: add_nginx_apt_repository
2023-08-10 22:44:47 +02:00
tags:
- nginx
- packages
- name: Update apt cache
ansible.builtin.apt: # noqa no-handler
update_cache: true
2023-08-23 21:22:51 +02:00
when: (download_nginx_signing_key.status_code is defined and download_nginx_signing_key.status_code == 200) or add_nginx_apt_repository is changed
- name: Install nginx
2023-08-10 22:44:47 +02:00
ansible.builtin.apt:
pkg: nginx
cache_valid_time: 3600
state: present
tags:
- nginx
- packages
- name: Copy nginx.conf
2023-08-10 22:44:47 +02:00
ansible.builtin.template:
src: nginx.conf.j2
dest: /etc/nginx/nginx.conf
2023-08-23 21:22:51 +02:00
mode: "0644"
2023-08-10 22:44:47 +02:00
owner: root
group: root
notify:
- reload nginx
tags: nginx
- name: Copy extra nginx configs
2023-08-10 22:44:47 +02:00
ansible.builtin.copy:
src: "{{ item }}"
2023-08-23 21:22:51 +02:00
dest: /etc/nginx/{{ item }}
mode: "0644"
2023-08-10 22:44:47 +02:00
owner: root
group: root
loop:
- extra-security.conf
- fastcgi_cache
notify:
- reload nginx
tags: nginx
- name: Remove default nginx vhost
2023-08-10 22:44:47 +02:00
ansible.builtin.file:
path: /etc/nginx/conf.d/default.conf
state: absent
tags: nginx
- name: Create fastcgi cache dir
2023-08-10 22:44:47 +02:00
ansible.builtin.file:
path: /var/cache/nginx/cached/fastcgi
state: directory
owner: nginx
group: nginx
2023-08-23 21:22:51 +02:00
mode: "0755"
tags: nginx
- name: Configure nginx virtual hosts
ansible.builtin.include_tasks: vhosts.yml
when: nginx_vhosts is defined
tags: nginx
- name: Configure WordPress
ansible.builtin.include_tasks: wordpress.yml
when: nginx_vhosts is defined
tags: wordpress
- name: Configure blank nginx vhost
2023-08-10 22:44:47 +02:00
ansible.builtin.template:
src: blank-vhost.conf.j2
dest: "{{ nginx_confd_path }}/blank-vhost.conf"
2023-08-23 21:22:51 +02:00
mode: "0644"
2023-08-10 22:44:47 +02:00
owner: root
group: root
notify:
- reload nginx
tags: nginx
- name: Configure munin vhost
2023-08-10 22:44:47 +02:00
ansible.builtin.copy:
src: munin.conf
dest: /etc/nginx/conf.d/munin.conf
2023-08-23 21:22:51 +02:00
mode: "0644"
2023-08-10 22:44:47 +02:00
owner: root
group: root
notify:
- reload nginx
tags: nginx
2016-06-27 18:13:20 +02:00
- name: Start and enable nginx service
2023-08-10 22:44:47 +02:00
ansible.builtin.systemd:
name: nginx
state: started
enabled: true
tags: nginx
- name: Configure Let's Encrypt
ansible.builtin.include_tasks: letsencrypt.yml
tags: letsencrypt
# vim: set ts=2 sw=2: