Skip to content

Commit 42509ae

Browse files
committed
Delay SSL certificate generation
Delay LetsEncrypt SSL certificate generation until after Git repository is pulled. This prevents `.well-known` directory creation from preventing Git pulls due to the project root directory not being empty.
1 parent c0ea18b commit 42509ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ansible/roles/web/tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
- name: Import nginx tasks
55
ansible.builtin.import_tasks: nginx.yml
66

7-
- name: Import letsencrypt tasks
8-
ansible.builtin.import_tasks: letsencrypt.yml
9-
107
- name: Import django tasks
118
ansible.builtin.import_tasks: django.yml
129

1310
- name: Import pretalx tasks
1411
ansible.builtin.import_tasks: pretalx.yml
12+
13+
- name: Import letsencrypt tasks
14+
ansible.builtin.import_tasks: letsencrypt.yml

0 commit comments

Comments
 (0)