dependencies: - role: docker_compose vars: docker_compose__compose_file_content: "{{ lookup('ansible.builtin.template', 'compose.yaml.j2') }}" docker_compose__configuration_files: [ ] - role: certbot vars: certbot__new_cert_commands: - "systemctl restart nginx.service" certbot__certs: - commonName: "{{ dooris__hostname }}" challengeType: "dns-01-acme-dns" dns_01_acme_dns: subdomain: "{{ dooris__acmedns.subdomain }}" apiUser: "{{ dooris__acmedns.apiUser }}" apiKey: "{{ dooris__acmedns.apiKey }}" - role: nginx vars: nginx__version_spec: "" nginx__deploy_redirect_conf: false nginx__configurations: - name: "{{ dooris__hostname }}" content: "{{ lookup('ansible.builtin.template', 'nginx/site.conf') }}" - name: http_handler content: "{{ lookup('ansible.builtin.template', 'nginx/http_handler.conf') }}"