Dynamic modules starts at version 1.9.11

This commit is contained in:
Emilien Mantel
2016-10-12 18:16:53 +02:00
parent 42bb4a3e2b
commit 41a5575627
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
user {{ nginx_user }};
worker_processes {{ nginx_worker_processes }};
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 -%}
load_module "modules/ngx_{{ module }}_module.so";
{% endfor %}