68 lines
2 KiB
YAML
68 lines
2 KiB
YAML
---
|
|
- name: Install nginx Debian
|
|
when: ansible_distribution_file_variety == "Debian"
|
|
tags: [nginx]
|
|
block:
|
|
- name: Install the Ubuntu PPA for nginx
|
|
ansible.builtin.apt_repository:
|
|
repo: "'{{ nginx_ppa_repo }}'"
|
|
update_cache: true
|
|
when:
|
|
- nginx_use_ppa
|
|
- ansible_distribution == 'Ubuntu'
|
|
tags: [nginx, nginx_ppa]
|
|
|
|
- name: Install the key of the nginx.com repository
|
|
ansible.builtin.apt_key:
|
|
url: "{{ nginx_org_repo_key }}"
|
|
state: present
|
|
when:
|
|
- nginx_use_nginx_org_repo
|
|
- ansible_distribution == 'Ubuntu'
|
|
tags: [nginx, nginx_org_ppa]
|
|
|
|
- name: Install the nginx.com repository configuration
|
|
ansible.builtin.apt_repository:
|
|
repo: "{{ nginx_org_repo }}"
|
|
update_cache: true
|
|
filename: nginx_org
|
|
when:
|
|
- nginx_use_nginx_org_repo
|
|
- ansible_distribution == 'Ubuntu'
|
|
tags: [nginx, nginx_org_ppa]
|
|
|
|
- name: Install the nginx web server
|
|
ansible.builtin.apt:
|
|
pkg: nginx-full
|
|
state: "{{ nginx_package_state }}"
|
|
cache_valid_time: "1800"
|
|
when:
|
|
- not nginx_use_ldap_pam_auth
|
|
- ansible_distribution_major_version <= '14'
|
|
|
|
- name: Install the nginx web server if we need ldap auth via pam
|
|
ansible.builtin.apt:
|
|
pkg: nginx-extras
|
|
state: "{{ nginx_package_state }}"
|
|
cache_valid_time: "1800"
|
|
when:
|
|
- nginx_use_ldap_pam_auth
|
|
- ansible_distribution_major_version <= '14'
|
|
|
|
- name: Install the nginx web server on Ubuntu >= 16.04
|
|
ansible.builtin.apt:
|
|
pkg: nginx
|
|
state: present
|
|
cache_valid_time: 1800
|
|
when: ansible_distribution_major_version >= '16'
|
|
|
|
- name: Install the nginx.com additional modules
|
|
ansible.builtin.apt:
|
|
pkg: "{{ item.pkg_name }}"
|
|
state: present
|
|
cache_valid_time: 1800
|
|
loop: "{{ nginx_org_modules }}"
|
|
when:
|
|
- nginx_use_nginx_org_repo
|
|
- ansible_distribution_major_version >= '16'
|