mirror of
https://github.com/HanXHX/ansible-nginx.git
synced 2026-04-07 12:32:09 +07:00
Vhost dir
This commit is contained in:
@@ -6,6 +6,16 @@
|
|||||||
state=directory
|
state=directory
|
||||||
|
|
||||||
- name: FILE | Create root folders (foreach nginx_vhosts)
|
- name: FILE | Create root folders (foreach nginx_vhosts)
|
||||||
|
file: >
|
||||||
|
path={{ nginx_root }}/{{ item.name if item.name is string else item.name[0] }}
|
||||||
|
state=directory
|
||||||
|
owner={{ item.owner | default('www-data') }}
|
||||||
|
group={{ item.group | default('www-data') }}
|
||||||
|
mode={{ item.mode | default('0755') }}
|
||||||
|
with_items: nginx_vhosts
|
||||||
|
when: item.root is not defined and item.template != '_proxy'
|
||||||
|
|
||||||
|
- name: FILE | Create root public folders (foreach nginx_vhosts)
|
||||||
file: >
|
file: >
|
||||||
path={{ nginx_root }}/{{ item.name if item.name is string else item.name[0] }}/public
|
path={{ nginx_root }}/{{ item.name if item.name is string else item.name[0] }}/public
|
||||||
state=directory
|
state=directory
|
||||||
|
|||||||
Reference in New Issue
Block a user