12 lines
335 B
YAML
Executable File
12 lines
335 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
|