--- - name: "Recursively copy files from local '{{ source_directory }}' to '{{ target_directory }}'" ansible.builtin.copy: src: "{{ source_directory }}" dest: "{{ target_directory }}" owner: "{{ nginx.user }}" group: "{{ nginx.user }}"