mod_ssl and certificates, first try.

This commit is contained in:
Ralph Bean 2014-12-08 14:51:28 +00:00
parent 1af3349e63
commit ba3afd0da3
5 changed files with 109 additions and 0 deletions

View file

@ -0,0 +1 @@
LoadModule ssl_module modules/mod_ssl.so

View file

@ -0,0 +1,20 @@
- 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/ssl.conf
owner=root
group=root
mode=0644
notify:
- restart httpd
tags:
- httpd
- httpd/certificate