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.
1234567891011 |
- - name: Create directory for blog HTML
- file: state=directory path=/var/www/{{ domain }} group=www-data owner=www-data
-
- - name: Configure the Apache HTTP server for the blog
- template: src=etc_apache2_sites-available_blog.j2 dest=/etc/apache2/sites-available/{{ domain }} group=www-data owner=www-data
- notify: restart apache
-
- - name: Enable blog site
- command: a2ensite {{ domain }} creates=/etc/apache2/sites-enabled/{{ domain }}
- notify: restart apache
|