Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
12345678910111213141516 |
- - name: Create directories for HTML documents
- file: state=directory path={{ item }} group=www-data owner={{ main_user_name }}
- with_items: "{{ virtual_domains | json_query('[*].doc_root') | unique }}"
-
- - name: Create the Apache sites config files
- template:
- src=etc_apache2_sites-available_blog.j2
- dest=/etc/apache2/sites-available/{{ item.name }}.conf
- owner=root
- group=root
- with_items: "{{ virtual_domains }}"
-
- - name: Enable Apache sites (creates new sites-enabled symlinks)
- command: a2ensite {{ item }}.conf creates=/etc/apache2/sites-enabled/{{ item }}.conf
- notify: restart apache
- with_items: "{{ virtual_domains | json_query('[*].name') }}"
|