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