2020-03-25 18:43:32 +01:00
|
|
|
---
|
|
|
|
- name: Converge
|
|
|
|
hosts: all
|
2020-08-19 18:39:17 +02:00
|
|
|
tasks:
|
|
|
|
- name: Install NGINX from source
|
|
|
|
include_role:
|
|
|
|
name: ansible-role-nginx
|
|
|
|
vars:
|
|
|
|
nginx_debug_output: true
|
2020-03-25 18:43:32 +01:00
|
|
|
|
2020-08-19 18:39:17 +02:00
|
|
|
nginx_install_from: source
|
|
|
|
nginx_branch: stable
|
2021-10-07 14:05:04 +02:00
|
|
|
nginx_static_modules: ['http_ssl_module']
|
2020-08-19 18:39:17 +02:00
|
|
|
nginx_install_source_build_tools: true
|
|
|
|
nginx_install_source_pcre: true
|
|
|
|
nginx_install_source_openssl: true
|
|
|
|
nginx_install_source_zlib: true
|