mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-06-14 22:36:09 +08:00
18 lines
496 B
YAML
18 lines
496 B
YAML
- name: copy httpd ssl certificates
|
|
copy: src="{{ private }}/files/httpd/{{ item }}" dest="/etc/lighttpd/{{ item }}" owner=root group=root mode=0600
|
|
with_items:
|
|
- copr-be.fedoraproject.org.key
|
|
- copr-be.fedoraproject.org.crt
|
|
- copr-be.fedoraproject.org.pem
|
|
notify:
|
|
- restart lighttpd
|
|
tags:
|
|
- config
|
|
|
|
- name: copy httpd ssl certificates (CAcert)
|
|
copy: src="DigiCertCA.crt" dest="/etc/lighttpd/" owner=root group=root mode=0600
|
|
tags:
|
|
- config
|
|
notify:
|
|
- restart lighttpd
|