選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

17 行
592 B

  1. - name: install required binary packages
  2. apt: name={{item}} state=installed
  3. with_items:
  4. - apache2
  5. - libapache2-mod-php5
  6. notify: restart apache
  7. - name: Create Apache vhost configuration for Webmail
  8. template: src=webmail.conf.j2 dest=/etc/apache2/sites-available/webmail.conf
  9. notify: restart apache
  10. - name: Enable Apache vhost
  11. command: /usr/sbin/a2ensite webmail.conf creates=/etc/apache2/sites-enabled/webmail.conf
  12. notify: restart apache
  13. - name: Enabling Apache SSL module
  14. command: /usr/sbin/a2enmod ssl creates=/etc/apache2/mods-enabled/ssl.conf
  15. notify: restart apache