roles/nginx: add todo about document roots

We assume it's always /var/www/$domain_name but it can be overriden
in the host_vars...
This commit is contained in:
Alan Orth 2021-09-27 12:05:53 +03:00
parent 170e591701
commit f8752bb3e7
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@
notify:
- reload nginx
# TODO: this could break because we can override the document root in host vars
- name: Create vhost document roots
file: path={{ nginx_root_prefix }}/{{ item.domain_name }} state=directory mode=0755 owner=nginx group=nginx
loop: "{{ nginx_vhosts }}"