ansible/roles/owncloud/templates/certs.j2

16 lines
307 B
Plaintext
Raw Normal View History

2016-04-05 08:44:23 +02:00
---
{{ owncloud_domain }}:
2016-04-08 09:28:53 +02:00
- path: /etc/nginx/ssl/{{ owncloud_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
2016-04-06 19:02:54 +02:00
action: 'service nginx restart'
2016-04-08 09:28:53 +02:00
- path: /etc/nginx/ssl/{{ owncloud_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
2016-04-06 19:02:54 +02:00
action: 'service nginx restart'