ansible/roles/gitea/templates/certs.j2

16 lines
318 B
Plaintext
Raw Normal View History

2016-04-09 23:41:41 +02:00
---
2020-06-18 22:34:30 +02:00
{{ gitea_domain }}:
- path: /etc/nginx/ssl/{{ gitea_domain }}.key
2016-04-09 23:41:41 +02:00
user: root
group: root
perm: '400'
format: key
2017-02-28 14:48:03 +01:00
action: '/usr/sbin/service nginx restart'
2020-06-18 22:34:30 +02:00
- path: /etc/nginx/ssl/{{ gitea_domain }}.crt
2016-04-09 23:41:41 +02:00
user: root
group: root
perm: '400'
format: crt,ca
2017-02-28 14:48:03 +01:00
action: '/usr/sbin/service nginx restart'