Files
fedora-infra_ansible/roles/httpd/mod_ssl/tasks/main.yml
2017-10-08 22:31:03 +00:00

34 lines
605 B
YAML

- name: Install mod_ssl
package: name=mod_ssl state=present
notify:
- reload proxyhttpd
tags:
- httpd
- httpd/mod_ssl
- name: Copy over SSLCertificateChainFile if defined
copy: >
src=ssl.conf
dest=/etc/httpd/conf.d/ssl.conf
owner=root
group=root
mode=0644
notify:
- reload proxyhttpd
tags:
- httpd
- httpd/certificate
- name: Install haveged for entropy
package: name=haveged state=present
tags:
- httpd
- httpd/proxy
- name: Set haveged running/enabled
service: name=haveged enabled=yes state=started
tags:
- service
- httpd
- httpd/proxy