25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- - name: install required binary packages
- apt: name={{item}} state=installed
- with_items:
- - apache2
- - libapache2-mod-php5
- notify: restart apache
- - name: Create Apache vhost configuration for Webmail
- template: src=webmail.conf.j2 dest=/etc/apache2/sites-available/webmail.conf
- notify: restart apache
- - name: Enable Apache vhost
- command: /usr/sbin/a2ensite webmail.conf creates=/etc/apache2/sites-enabled/webmail.conf
- notify: restart apache
- - name: Enabling Apache SSL module
- command: /usr/sbin/a2enmod ssl creates=/etc/apache2/mods-enabled/ssl.conf
- notify: restart apache
|