--- - name: Build nginx-proxy compose dirs ansible.builtin.file: state: directory dest: '{{ nginx_proxy_base }}/{{ item.path }}' with_filetree: '../templates' when: item.state == 'directory' - name: Build nginx-proxy compose files ansible.builtin.template: src: '{{ item.src }}' dest: '{{ nginx_proxy_base }}/{{ item.path }}' with_filetree: '../templates' when: item.state == 'file' notify: - (Re)start nginx-proxy