Files
a13labs.infra/ansible/playbook_nginx_proxy.yml
T

15 lines
335 B
YAML
Raw Normal View History

---
- name: Configure nginx reverse proxy with TLS and OAuth2
hosts: nginx
gather_facts: true
pre_tasks:
- name: Ensure target is Fedora
ansible.builtin.assert:
that:
- ansible_facts['distribution'] == "Fedora"
fail_msg: "This playbook supports Fedora hosts only"
roles:
- nginx_proxy