14 lines
515 B
YAML
14 lines
515 B
YAML
---
|
|
- block:
|
|
- name: Install the nginx virtualhost
|
|
template: src=phpmyadmin_wordpress.conf.j2 dest=/etc/nginx/sites-available/phpmyadmin.conf mode=0444
|
|
with_items: '{{ phpfpm_pools }}'
|
|
notify: Reload nginx
|
|
|
|
- name: Enable the nginx virtualhost
|
|
file: src=/etc/nginx/sites-available/phpmyadmin.conf dest=/etc/nginx/sites-enabled/phpmyadmin.conf state=link
|
|
notify: Reload nginx
|
|
|
|
when: phpmyadmin_local_nginx_virtualhost | bool
|
|
tags: [ 'phpMyadmin', 'phpmyadmin', 'nginx', 'virtualhost' ]
|