ansible/roles/nextcloud/templates/certs.j2

16 lines
330 B
Plaintext
Raw Normal View History

2016-04-05 08:44:23 +02:00
---
2019-05-20 20:55:05 +02:00
{{ nextcloud_domain }}:
- path: /etc/nginx/ssl/{{ nextcloud_domain }}.key
2016-04-05 08:44:23 +02:00
user: root
group: root
perm: '400'
2016-04-08 09:28:53 +02:00
format: key
2017-02-28 14:48:03 +01:00
action: '/usr/sbin/service nginx restart'
2019-05-20 20:55:05 +02:00
- path: /etc/nginx/ssl/{{ nextcloud_domain }}.crt
2016-04-05 08:44:23 +02:00
user: root
group: root
perm: '400'
2016-04-08 09:28:53 +02:00
format: crt,ca
2017-02-28 14:48:03 +01:00
action: '/usr/sbin/service nginx restart'