2022-02-08 20:01:18 -08:00
|
|
|
---
|
|
|
|
|
- hosts: alpha
|
|
|
|
|
remote_user: ubuntu
|
|
|
|
|
become: yes
|
|
|
|
|
become_method: sudo
|
|
|
|
|
tasks:
|
|
|
|
|
- name: Install New Certificate for all sites
|
|
|
|
|
command: >
|
|
|
|
|
certbot -n --nginx -m "{{CERT_EMAIL}}" --agree-tos
|
|
|
|
|
--domains "{{item}}"
|
|
|
|
|
loop:
|
|
|
|
|
- search.project-athens.xyz
|
|
|
|
|
- clips.shockrah.xyz
|
2022-09-13 07:26:33 -07:00
|
|
|
- files.leftcoast.space
|
2022-02-08 20:01:18 -08:00
|
|
|
|