mirror of
https://github.com/HanXHX/ansible-nginx.git
synced 2026-03-14 10:32:10 +07:00
Dynamic modules starts at version 1.9.11
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
- name: INCLUDE | Manage dynamic modules
|
- name: INCLUDE | Manage dynamic modules
|
||||||
include: dyn_modules.yml
|
include: dyn_modules.yml
|
||||||
when: nginx_version.stdout | version_compare('1.9.1', 'ge')
|
when: nginx_version.stdout | version_compare('1.9.11', 'ge')
|
||||||
|
|
||||||
- name: INCLUDE | Install
|
- name: INCLUDE | Install
|
||||||
include: config.yml
|
include: config.yml
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
user {{ nginx_user }};
|
user {{ nginx_user }};
|
||||||
worker_processes {{ nginx_worker_processes }};
|
worker_processes {{ nginx_worker_processes }};
|
||||||
pid {{ nginx_pid }};
|
pid {{ nginx_pid }};
|
||||||
{% if nginx_version.stdout | version_compare('1.9.1', 'ge') %}
|
{% if nginx_version.stdout | version_compare('1.9.11', 'ge') %}
|
||||||
{% for module in nginx_dyn_modules -%}
|
{% for module in nginx_dyn_modules -%}
|
||||||
load_module "modules/ngx_{{ module }}_module.so";
|
load_module "modules/ngx_{{ module }}_module.so";
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
Reference in New Issue
Block a user