- name: Install Git, Nginx, and Fcgiwrap ansible.builtin.dnf: name: - cgit - nginx - fcgiwrap state: present - name: Deploy Git Nginx configuration ansible.builtin.template: src: git_nginx.conf.j2 dest: /etc/nginx/conf.d/default.conf notify: Restart Git Services - name: Ensure Git Web Services are Enabled and Running ansible.builtin.systemd: name: "{{ item }}" state: started enabled: yes loop: - nginx - fcgiwrap@nginx.socket