Optimized wordpress variables

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-11 20:00:48 +02:00
parent f72ac30884
commit f6e62525d1
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
2 changed files with 9 additions and 5 deletions

View File

@ -6,7 +6,7 @@
- name: "Include role srv-proxy-6-6-domain for {{ application_id }}"
include_role:
name: srv-proxy-6-6-domain
loop: "{{ applications | get_app_conf(application_id, 'server.domains.canonical', True) }}"
loop: "{{ wordpress_domains }}"
loop_control:
loop_var: domain
vars:
@ -25,15 +25,14 @@
dest: "{{ host_msmtp_conf }}"
notify: docker compose up
- name: "Install wordpress"
include_tasks: install.yml
- name: "Install and activate WordPress plugins from application config"
- name: "Install and activate WordPress plugins"
block:
- name: "Iterate through WordPress plugins"
include_tasks: plugin.yml
loop: "{{ applications | get_app_conf(application_id, 'plugins', True) | dict2items }}"
loop: "{{ wordpress_plugins }}"
loop_control:
label: "{{ item.key }}"
vars:

View File

@ -1,6 +1,9 @@
# General
application_id: "web-app-wordpress"
database_type: "mariadb"
host_msmtp_conf: "{{docker_compose.directories.config}}msmtprc.conf"
# Wordpress Specific
wordpress_max_upload_size: "{{ applications | get_app_conf(application_id, 'max_upload_size') }}"
wordpress_custom_image: "wordpress_custom"
wordpress_docker_html_path: "/var/www/html"
@ -8,3 +11,5 @@ wordpress_version: "{{ applications | get_app_conf(application_id, 'doc
wordpress_image: "{{ applications | get_app_conf(application_id, 'docker.services.wordpress.image', True) }}"
wordpress_name: "{{ applications | get_app_conf(application_id, 'docker.services.wordpress.name', True) }}"
wordpress_volume: "{{ applications | get_app_conf(application_id, 'docker.volumes.data', True) }}"
wordpress_domains: "{{ applications | get_app_conf(application_id, 'server.domains.canonical', True) }}"
wordpress_plugins: "{{ applications | get_app_conf(application_id, 'plugins', True) | dict2items }}"