You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- - name: Copy SSL private key into place
- copy: src=wildcard_private.key dest=/etc/ssl/private/wildcard_private.key group=root owner=root
-
- - name: Copy SSL public certificate into place
- copy: src=wildcard_public_cert.crt dest=/etc/ssl/certs/wildcard_public_cert.crt group=root owner=root
-
- - name: Copy CA combined certificate into place
- copy: src=wildcard_ca.pem dest=/etc/ssl/certs/wildcard_ca.pem group=root owner=root
-
- - name: Create a combined version of the public cert with intermediate and root CAs
- shell: cat /etc/ssl/certs/wildcard_public_cert.crt /etc/ssl/certs/wildcard_ca.pem >
- /etc/ssl/certs/wildcard_combined.pem creates=/etc/ssl/certs/wildcard_combined.pem
-
- - name: Enable Apache SSL module
- command: a2enmod ssl creates=/etc/apache2/mods-enabled/ssl.load
|