Adding landing page

This commit is contained in:
Ian Roddis
2026-03-30 10:07:37 -04:00
parent 561d3c682f
commit 5f6c95f5d2
2 changed files with 430 additions and 0 deletions
+7
View File
@@ -8,6 +8,13 @@
- "{{ website_data_dir }}"
- "{{ website_data_dir }}/html"
- name: Deploy landing page
ansible.builtin.template:
src: index.html.j2
dest: "{{ website_data_dir }}/html/index.html"
mode: '0644'
notify: restart website
- name: Deploy website docker-compose
ansible.builtin.template:
src: docker-compose.yml.j2