2018-01-19 19:27:47 +01:00
|
|
|
---
|
2018-04-12 19:20:39 +02:00
|
|
|
- name: "(Install: All OSs) Install NGINX Open Source JavaScript Module"
|
2018-01-19 19:27:47 +01:00
|
|
|
package:
|
2020-04-18 00:40:35 +02:00
|
|
|
name: "nginx-module-njs{{ nginx_version | default('') }}"
|
2018-01-19 19:27:47 +01:00
|
|
|
state: present
|
2018-09-15 01:28:20 +02:00
|
|
|
when: nginx_type == "opensource"
|
2018-01-19 19:27:47 +01:00
|
|
|
|
2018-04-12 19:20:39 +02:00
|
|
|
- name: "(Install: All OSs) Install NGINX Plus JavaScript Module"
|
2018-01-19 19:27:47 +01:00
|
|
|
package:
|
2020-04-18 00:40:35 +02:00
|
|
|
name: "nginx-plus-module-njs{{ nginx_version | default('') }}"
|
2018-01-19 19:27:47 +01:00
|
|
|
state: present
|
2018-09-15 01:28:20 +02:00
|
|
|
when: nginx_type == "plus"
|
2018-01-19 19:27:47 +01:00
|
|
|
|
2018-04-12 19:20:39 +02:00
|
|
|
- name: "(Setup: All NGINX) Load NGINX JavaScript Module"
|
2019-01-21 17:20:16 +01:00
|
|
|
lineinfile:
|
2018-01-19 19:27:47 +01:00
|
|
|
path: /etc/nginx/nginx.conf
|
|
|
|
insertbefore: BOF
|
2019-01-21 17:20:16 +01:00
|
|
|
line: "{{ item }}"
|
2020-07-08 14:55:15 +02:00
|
|
|
loop:
|
2019-01-21 17:20:16 +01:00
|
|
|
- load_module modules/ngx_http_js_module.so;
|
|
|
|
- load_module modules/ngx_stream_js_module.so;
|
2019-08-03 12:53:21 +02:00
|
|
|
when: not nginx_main_template_enable
|
2018-01-26 20:00:26 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|