2018-02-09 21:00:58 +01:00
|
|
|
---
|
2018-04-12 19:20:39 +02:00
|
|
|
- name: "(Install: All OSs) Install NGINX Open Source Image Filter Module"
|
2018-02-09 21:00:58 +01:00
|
|
|
package:
|
2020-04-18 00:40:35 +02:00
|
|
|
name: "nginx-module-image-filter{{ nginx_version | default('') }}"
|
2018-02-09 21:00:58 +01:00
|
|
|
state: present
|
2018-09-15 01:28:20 +02:00
|
|
|
when: nginx_type == "opensource"
|
2018-02-09 21:00:58 +01:00
|
|
|
|
|
|
|
- name: "(Install: All OSs) Install NGINX Plus Image Filter Module"
|
|
|
|
package:
|
2020-04-18 00:40:35 +02:00
|
|
|
name: "nginx-plus-module-image-filter{{ nginx_version | default('') }}"
|
2018-02-09 21:00:58 +01:00
|
|
|
state: present
|
2018-09-15 01:28:20 +02:00
|
|
|
when: nginx_type == "plus"
|
2018-02-09 21:00:58 +01:00
|
|
|
|
|
|
|
- name: "(Setup: All NGINX) Load NGINX Image Filter Module"
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/nginx/nginx.conf
|
|
|
|
insertbefore: BOF
|
|
|
|
line: load_module modules/ngx_http_image_filter_module.so;
|
2020-08-19 18:39:17 +02:00
|
|
|
when: not nginx_main_template_enable | bool
|
2018-02-09 21:00:58 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|