Use nginx role with custom nginx.conf support

This commit is contained in:
julian 2023-04-15 18:13:22 +02:00
commit 65ac14c18b
23 changed files with 378 additions and 115 deletions

View file

@ -0,0 +1,30 @@
- name: make sure `gnupg` package is installed
ansible.builtin.apt:
name: gnupg
state: present
update_cache: true
become: true
- name: make sure NGINX signing key is added
ansible.builtin.apt_key:
url: https://nginx.org/keys/nginx_signing.key
state: present
become: true
notify: apt-get update
- name: make sure NGINX APT repository is added
ansible.builtin.apt_repository:
repo: deb https://nginx.org/packages/debian/ bullseye nginx
state: present
become: true
notify: apt-get update
- name: make sure NGINX APT source repository is added
ansible.builtin.apt_repository:
repo: deb-src https://nginx.org/packages/debian/ bullseye nginx
state: present
become: true
notify: apt-get update
- name: Flush handlers to make sure "apt-get update" handler runs, if needed
ansible.builtin.meta: flush_handlers