28 lines
575 B
YAML
28 lines
575 B
YAML
---
|
|
- name: Install nginx
|
|
yum:
|
|
name: nginx
|
|
|
|
- name: enable nginx
|
|
systemd:
|
|
name: nginx
|
|
enabled: yes
|
|
state: started
|
|
|
|
- name: create /etc/nginx/nginx.conf from template
|
|
template:
|
|
src: nginx.conf.j2
|
|
dest: /etc/nginx/nginx.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: Restart nginx
|
|
|
|
- name: Allow apache to read files in /etc/letsencrypt/{{ letsEncryptDomain }}
|
|
sefcontext:
|
|
target: '/etc/letsencrypt/{{ letsEncryptDomain }}(/.*)?'
|
|
setype: httpd_sys_content_t
|
|
state: present
|
|
notify:
|
|
- Restore selinux context
|