123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- - name: Install apache2 packages
- action: ${ansible_pkg_mgr} pkg=apache2 state=installed update_cache=yes
- when_boolean: ${with_apache2}
- - name: Install apache2 basic security configuration
- action: template src=apache2/conf.d/security.j2 dest=/etc/apache2/conf.d/security owner=root group=root mode=0644
- notify:
- - Reload apache2
- when_boolean: ${with_apache2}
- - name: Install mod_php5 packages for apache2
- action: ${ansible_pkg_mgr} pkg=libapache2-mod-php5 state=installed update_cache=yes
- when_boolean: ${with_apache2} and ${with_apache2_modphp5}
- - name: Create basic authentication file for admin (apache2)
- action: template src=apache2/auth_admin.j2 dest=/etc/apache2/auth_admin owner=root group=www-data mode=0640
- when_boolean: ${with_apache2}
- - name: Install PHPMyAdmin virtual host for apache2 (sites-available)
- action: template src=apache2/pma_vhost.j2 dest=/etc/apache2/sites-available/pma owner=root group=root mode=0644
- notify:
- - Reload apache2
- when_boolean: ${with_phpmyadmin} and ${with_apache2}
- - name: Install PHPMyAdmin virtual host for apache2 (sites-enabled)
- action: file src=/etc/apache2/sites-available/pma path=/etc/apache2/sites-enabled/pma state=link
- notify:
- - Reload apache2
- when_boolean: ${with_phpmyadmin} and ${with_apache2}
- - name: Install PHP system checks virtual host for apache2 (sites-available)
- action: template src=apache2/sys_vhost.j2 dest=/etc/apache2/sites-available/sys owner=root group=root mode=0644
- notify:
- - Reload apache2
- when_boolean: ${with_php} and ${with_apache2}
- - name: Install PHP system checks virtual host for apache2 (sites-enabled)
- action: file src=/etc/apache2/sites-available/sys path=/etc/apache2/sites-enabled/sys state=link
- notify:
- - Reload apache2
- when_boolean: ${with_php} and ${with_apache2}
- - name: Ensure apache2 is running
- action: service name=apache2 state=started
- when_boolean: ${with_apache2}
|