2018-01-10 23:40:01 +01:00
|
|
|
---
|
2020-09-15 21:27:06 +02:00
|
|
|
- name: "(Debian/Ubuntu) Set up NGINX Plus license verification"
|
2018-03-02 01:15:27 +01:00
|
|
|
blockinfile:
|
|
|
|
path: /etc/apt/apt.conf.d/90nginx
|
|
|
|
create: yes
|
|
|
|
block: |
|
|
|
|
Acquire::https::plus-pkgs.nginx.com::Verify-Peer "true";
|
|
|
|
Acquire::https::plus-pkgs.nginx.com::Verify-Host "true";
|
|
|
|
Acquire::https::plus-pkgs.nginx.com::SslCert "/etc/ssl/nginx/nginx-repo.crt";
|
|
|
|
Acquire::https::plus-pkgs.nginx.com::SslKey "/etc/ssl/nginx/nginx-repo.key";
|
2019-12-11 21:45:12 +01:00
|
|
|
state: "{{ nginx_license_status | default ('present') }}"
|
2020-08-28 10:30:23 +02:00
|
|
|
mode: 0444
|
2018-01-10 23:40:01 +01:00
|
|
|
|
2020-09-15 21:27:06 +02:00
|
|
|
- name: "(Debian/Ubuntu) Configure NGINX Plus repository"
|
2020-08-28 10:30:23 +02:00
|
|
|
apt_repository:
|
|
|
|
filename: nginx-plus
|
2020-09-15 21:27:06 +02:00
|
|
|
repo: "{{ repository }}"
|
2018-01-10 23:40:01 +01:00
|
|
|
update_cache: yes
|
2020-08-28 10:30:23 +02:00
|
|
|
state: "{{ nginx_license_status | default ('present') }}"
|
|
|
|
mode: 0644
|
2020-09-15 21:27:06 +02:00
|
|
|
|
|
|
|
- name: "(Debian/Ubuntu) Install NGINX Plus"
|
|
|
|
apt:
|
|
|
|
name: "nginx-plus{{ nginx_version | default('') }}"
|
|
|
|
state: "{{ nginx_state }}"
|
2020-09-17 17:00:27 +02:00
|
|
|
notify: "(Handler) Run NGINX"
|