16 lines
453 B
YAML
Raw Normal View History

---
2025-01-21 14:09:06 +01:00
- name: "pull homepage from {{nginx_static_repository_address}}"
git:
2025-01-21 14:09:06 +01:00
repo: "{{nginx_static_repository_address}}"
dest: "{{nginx_homepage_root}}"
update: yes
ignore_errors: true
2025-01-21 14:09:06 +01:00
- name: configure {{primary_domain}}.conf
template:
src: "static.nginx.conf.j2"
2025-01-21 14:09:06 +01:00
dest: "{{nginx_servers_directory}}{{primary_domain}}.conf"
vars:
2025-01-21 14:09:06 +01:00
domain: "{{primary_domain}}"
notify: restart nginx
when: run_once_nginx is not defined