mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-14 11:50:06 +00:00
9 lines
233 B
YAML
9 lines
233 B
YAML
---
|
|
- name: Setup certbot
|
|
shell: "certbot --nginx --non-interactive --agree-tos --email {{ contact_email }} -d {{ domain }} -d git.{{ domain }}"
|
|
|
|
- name: Reload Nginx
|
|
systemd:
|
|
name: nginx
|
|
enabled: yes
|
|
state: restarted |