mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 02:20:51 +08:00
21 lines
353 B
YAML
21 lines
353 B
YAML
- name: Install mod_ssl
|
|
yum: name=mod_ssl state=installed
|
|
notify:
|
|
- restart httpd
|
|
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:
|
|
- restart httpd
|
|
tags:
|
|
- httpd
|
|
- httpd/certificate
|