ansible-role-nginx/tasks/main.yml

119 lines
4.5 KiB
YAML
Raw Normal View History

2018-01-10 23:40:01 +01:00
---
2020-09-19 17:32:17 +02:00
- name: Check whether you are using a supported NGINX distribution
2020-09-15 21:27:06 +02:00
assert:
that: (nginx_type == "opensource" and ansible_facts['distribution'] in nginx_distributions)
or (nginx_type == "plus" and ansible_facts['distribution'] in nginx_plus_distributions)
success_msg: "Your OS, {{ ansible_facts['distribution'] }} is supported by NGINX {{ (nginx_type=='plus') | ternary('Plus', 'Open Source') }}"
fail_msg: "Your OS, {{ ansible_facts['distribution'] }} is not supported by NGINX {{ (nginx_type=='plus') | ternary('Plus', 'Open Source') }}"
when:
- nginx_install | bool
- (nginx_install_from == "nginx_repository" or nginx_type == "plus")
ignore_errors: yes
2020-09-15 21:27:06 +02:00
tags: nginx_check_support
2020-09-19 17:32:17 +02:00
- name: Set up prerequisites
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/prerequisites/prerequisites.yml"
tags: nginx_prerequisites
2018-08-03 00:56:25 +02:00
2020-09-19 17:32:17 +02:00
- name: Set up signing keys
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/keys/setup-keys.yml"
when: (nginx_install | bool and nginx_install_from == "nginx_repository")
or nginx_amplify_enable | bool or nginx_unit_enable | bool
tags: nginx_key
2020-09-19 17:32:17 +02:00
- name: Install and Configure NGINX
block:
2020-09-19 17:32:17 +02:00
- name: Install NGINX
2020-07-22 16:19:43 +02:00
block:
2020-09-19 17:32:17 +02:00
- name: Install NGINX Open Source
2020-07-22 16:19:43 +02:00
include_tasks: "{{ role_path }}/tasks/opensource/install-oss.yml"
when: nginx_type == "opensource"
tags: nginx_install_oss
2020-09-19 17:32:17 +02:00
- name: Set up NGINX Plus license
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/plus/setup-license.yml"
when:
- nginx_type == "plus"
- nginx_setup_license | bool
tags: nginx_setup_license
2020-09-19 17:32:17 +02:00
- name: Install NGINX Plus
include_tasks: "{{ role_path }}/tasks/plus/install-{{ ansible_facts['os_family'] | lower }}.yml"
when: nginx_type == "plus"
tags: nginx_install_plus
2020-09-19 17:32:17 +02:00
- name: Install NGINX modules
2020-07-22 16:19:43 +02:00
include_tasks: "{{ role_path }}/tasks/modules/install-modules.yml"
2020-09-08 00:44:54 +02:00
when:
- nginx_modules is defined
- nginx_modules | length > 0
tags: nginx_install_modules
2020-09-19 17:32:17 +02:00
- name: Remove NGINX Plus license
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/plus/remove-license.yml"
when:
- nginx_type == "plus"
2020-09-15 21:27:06 +02:00
- nginx_remove_license | bool
tags: nginx_remove_license
2020-09-19 17:32:17 +02:00
- name: Modify systemd parameters
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/config/modify-systemd.yml"
when:
- ansible_facts['service_mgr'] == "systemd"
- nginx_service_modify | bool
tags: nginx_modify_systemd
when: nginx_install | bool
2020-09-15 21:27:06 +02:00
tags: nginx_install
2020-09-19 17:32:17 +02:00
- name: (DEPRECATED) Configure NGINX
2020-07-22 16:19:43 +02:00
block:
2020-09-19 17:32:17 +02:00
- name: (DEPRECATED) Cleanup NGINX Config
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/config/cleanup-config.yml"
when: nginx_cleanup_config | bool
tags: nginx_cleanup_config
2020-09-19 17:32:17 +02:00
- name: (DEPRECATED) Upload NGINX Config
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/config/upload-config.yml"
2020-08-19 18:39:17 +02:00
when: nginx_main_upload_enable | bool
or nginx_http_upload_enable | bool
or nginx_stream_upload_enable | bool
or nginx_html_upload_enable | bool
or nginx_ssl_upload_enable | bool
tags: nginx_upload_config
2020-09-19 17:32:17 +02:00
- name: (DEPRECATED) Create NGINX Config
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/config/template-config.yml"
2020-08-19 18:39:17 +02:00
when: nginx_main_template_enable | bool
or nginx_http_template_enable | bool
or nginx_stream_template_enable | bool
or nginx_rest_api_enable | bool
tags: nginx_template_config
when: nginx_configure | bool
2020-09-19 17:32:17 +02:00
- name: Ensure NGINX is running
meta: flush_handlers
2020-09-19 17:32:17 +02:00
- name: Debug NGINX output
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/config/debug-output.yml"
when: nginx_debug_output | bool
tags: nginx_debug_output
2020-09-19 17:32:17 +02:00
- name: Configure logrotate for NGINX
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/config/setup-logrotate.yml"
when: nginx_logrotate_conf_enable | bool
tags: nginx_logrotate_config
when: nginx_enable | bool
2020-09-19 17:32:17 +02:00
- name: Install NGINX Amplify
2020-07-22 16:19:43 +02:00
include_tasks: "{{ role_path }}/tasks/amplify/install-amplify.yml"
when:
- nginx_amplify_enable | bool
- nginx_amplify_api_key is defined
- nginx_amplify_api_key | length > 0
tags: nginx_install_amplify
2018-09-11 01:05:25 +02:00
2020-09-19 17:32:17 +02:00
- name: (DEPRECATED) Install NGINX Unit
2020-07-22 16:19:43 +02:00
include_tasks: "{{ role_path }}/tasks/unit/install-unit.yml"
when: nginx_unit_enable | bool
tags: nginx_install_unit