1234567891011121314151617181920212223 |
- ---
- - name: define certificate path
- ansible.builtin.set_fact:
- nextcloud_tls_cert_file: "{{ nextcloud_tls_cert }}"
- - name: define key path
- ansible.builtin.set_fact:
- nextcloud_tls_cert_key_file: "{{ nextcloud_tls_cert_key }}"
- - name: define certificate chain path
- ansible.builtin.set_fact:
- nextcloud_tls_cert_chain_file: "{{ nextcloud_tls_cert_chain }}"
- when: nextcloud_tls_cert_chain is defined
- # - name: "[INSTALLED TLS] - check TLS certificate permissions"
- # ansible.builtin.file:
- # path: "{{ nextcloud_tls_cert_file }}"
- # mode: 0644
- # group: "{{ nextcloud_websrv_group }}"
- # - name: "[INSTALLED TLS] - check TLS key permissions"
- # ansible.builtin.file:
- # path: "{{ nextcloud_tls_cert_key_file }}"
- # mode: 0640
- # group: "{{ nextcloud_websrv_group }}"
|