13 lines
347 B
YAML
Executable File
13 lines
347 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
- hosts: jitsi
|
|
vars:
|
|
certbot: "{{ loc_certbot | default(glob_certbot | default([])) }}"
|
|
nginx: "{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}"
|
|
jitsi: "{{ glob_jitsi | default({}) | combine(loc_jitsi | default({})) }}"
|
|
roles:
|
|
- certbot
|
|
- nginx
|
|
- jitsi
|
|
- logos
|