11 lines
390 B
YAML
Executable File
11 lines
390 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
- hosts: reverseproxy
|
|
vars:
|
|
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
|
|
nginx: '{{ glob_nginx | default({}) | combine(service_nginx | default({}) | combine(loc_nginx | default({}))) }}'
|
|
reverseproxy: '{{ glob_reverseproxy | default({}) | combine(loc_reverseproxy | default({})) }}'
|
|
roles:
|
|
- certbot
|
|
- nginx
|