You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.8 KiB
58 lines
1.8 KiB
---
|
|
|
|
- name: Install PhpMyAdmin
|
|
|
|
collections: [ 'debops.debops', 'debops.roles01',
|
|
'debops.roles02', 'debops.roles03' ]
|
|
|
|
hosts: [ 'debian10' ]
|
|
|
|
vars_files:
|
|
- ./../../vars/php.yml
|
|
|
|
tasks:
|
|
- name: Import DebOps secret role
|
|
ansible.builtin.import_role:
|
|
name: 'secret'
|
|
|
|
- name: 'Adding pma nginx config'
|
|
copy:
|
|
dest: '/etc/nginx/sites-available/pma.conf'
|
|
content: |-
|
|
server {
|
|
listen 81;
|
|
server_name {{ site_name }};
|
|
root /var/www/phpmyadmin;
|
|
index index.php;
|
|
include auth.d/pma-auth.conf;
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$args;
|
|
}
|
|
set $upstream unix:/run/{{ php__version_preference[0] }}-fpm-www-data.sock;
|
|
location ~ \.php$ {
|
|
fastcgi_pass $upstream;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param SERVER_NAME $host;
|
|
}
|
|
}
|
|
|
|
- name: 'Adding pma nginx auth config'
|
|
copy:
|
|
dest: '/etc/nginx/auth.d/pma-auth.conf'
|
|
content: |-
|
|
include auth.d/grant-access-certbot.conf;
|
|
auth_basic_user_file passwords.d/pma.passwords;
|
|
|
|
- name: 'Adding pma nginx auth passwords files'
|
|
shell: |-
|
|
echo "{{ site_name }}:$(openssl passwd -apr1 {{ lookup("password", secret + "/basic/" + site_name + "/pma " + "length=30")}} )" > /etc/nginx/passwords.d/pma.passwords
|
|
|
|
- name: 'Turning on pma web site nginx config'
|
|
shell: |-
|
|
cd /etc/nginx/sites-enabled
|
|
ln -s ../sites-available/pma.conf ./
|
|
|
|
- name: 'Restarting nginx'
|
|
shell: |-
|
|
nginx -t && systemctl restart nginx
|