mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
23 lines
623 B
YAML
23 lines
623 B
YAML
---
|
|
- name: Allow network connections in SELinux
|
|
seboolean: name={{ item }} state=True persistent=True
|
|
with_items:
|
|
- httpd_can_network_connect
|
|
tags: web
|
|
|
|
- name: Allow nginx to bind on ports
|
|
seport: ports={{ (nginx_ports + nginx_ssl_ports ) | join(',') }} proto=tcp setype=http_port_t state=present
|
|
tags: web
|
|
|
|
- name: Ensure correct context on cache
|
|
sefcontext:
|
|
target: '/var/cache/nginx(/.*)?'
|
|
setype: httpd_cache_t
|
|
register: nginx_cache_context
|
|
tags: web
|
|
|
|
- name: Restore context of cache files
|
|
command: restorecon -R /var/cache/nginx
|
|
changed_when: nginx_cache_context.changed
|
|
tags: web
|