ansible/roles/nginx/tasks/install.yml
2024-06-16 17:39:08 +03:00

27 lines
816 B
YAML

---
- block:
- name: installing nginx
package:
name:
- nginx
- nginx-mod-stream
state: present
notify: start nginx
register: install_nginx_result
tags:
- nginx-install
- name: set httpd_can_network_connect flag on and keep it persistent across reboots
ansible.posix.seboolean:
name: httpd_can_network_connect
state: yes
persistent: yes
when: ansible_selinux is defined and ansible_selinux != False and ansible_selinux.status == 'enabled'
- name: set httpd_can_network_relay flag on and keep it persistent across reboots
ansible.posix.seboolean:
name: httpd_can_network_relay
state: yes
persistent: yes
when: ansible_selinux is defined and ansible_selinux != False and ansible_selinux.status == 'enabled'