2018-01-19 19:27:47 +01:00
|
|
|
---
|
2018-02-09 21:00:58 +01:00
|
|
|
- name: "(Install: All OSs) Install Open Source NGINX Perl Module"
|
2018-01-19 19:27:47 +01:00
|
|
|
package:
|
|
|
|
name: nginx-module-perl
|
|
|
|
state: present
|
|
|
|
when: type == "opensource"
|
|
|
|
|
2018-02-09 21:00:58 +01:00
|
|
|
- name: "(Install: All OSs) Install NGINX Plus Perl Module"
|
2018-01-19 19:27:47 +01:00
|
|
|
package:
|
|
|
|
name: nginx-plus-module-perl
|
|
|
|
state: present
|
|
|
|
when: type == "plus"
|
|
|
|
|
2018-01-26 20:00:26 +01:00
|
|
|
- name: "(Setup: All NGINX) Load NGINX Perl Module"
|
2018-01-19 19:27:47 +01:00
|
|
|
lineinfile:
|
|
|
|
path: /etc/nginx/nginx.conf
|
|
|
|
insertbefore: BOF
|
|
|
|
line: load_module modules/ngx_http_perl.so;
|
2018-01-26 20:00:26 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|